File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ import { Highlight } from './pages/pipes/highlight';
1818import { IpAddressMask } from './pages/pipes/ip-address-mask' ;
1919import { CreditCardMask } from './pages/pipes/credit-card-mask' ;
2020import { EmailMask } from './pages/pipes/email-mask' ;
21+ import { AsciiArtPage } from './pages/pipes/ascii-art' ;
2122
2223export const appRoutes : Route [ ] = [
2324 {
@@ -100,6 +101,10 @@ export const appRoutes: Route[] = [
100101 path : 'email-mask' ,
101102 component : EmailMask ,
102103 } ,
104+ {
105+ path : 'ascii-art' ,
106+ component : AsciiArtPage ,
107+ } ,
103108 ] ,
104109 } ,
105110 ] ,
Original file line number Diff line number Diff line change @@ -89,5 +89,11 @@ export const PIPES: Pipe[] = [
8989 url : "/docs/pipes/email-mask" ,
9090 description : "Mask email addresses while preserving first and last characters." ,
9191 isNew : true
92+ } ,
93+ {
94+ name : "ASCII Art" ,
95+ url : "/docs/pipes/ascii-art" ,
96+ description : "Transform text into stunning ASCII art banners with customizable styles." ,
97+ isNew : true
9298 }
9399] ;
You can’t perform that action at this time.
0 commit comments