Skip to content

Commit e613a07

Browse files
committed
feat: add ASCII art pipe to routes and pipes list
1 parent d97ade8 commit e613a07

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

apps/docs/src/app/app.routes.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import { Highlight } from './pages/pipes/highlight';
1818
import { IpAddressMask } from './pages/pipes/ip-address-mask';
1919
import { CreditCardMask } from './pages/pipes/credit-card-mask';
2020
import { EmailMask } from './pages/pipes/email-mask';
21+
import { AsciiArtPage } from './pages/pipes/ascii-art';
2122

2223
export 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
],

apps/docs/src/app/pages/model.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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
];

0 commit comments

Comments
 (0)