You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/modules/featureList.ts
+13-19Lines changed: 13 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -2,35 +2,29 @@ import type { FeatureItem } from '@site/src/types'
2
2
3
3
constfeatureList: FeatureItem[]=[
4
4
{
5
-
title: 'Security',
6
-
description:
7
-
'Built with security-first design, Textwire prevents code injection and common vulnerabilities by default',
5
+
title: '🚀 Performance',
6
+
description: `Templates parsed at app startup, evaluated on page visit. Use Go's embed package to bundle templates in final binary`,
8
7
},
9
8
{
10
-
title: 'Flexibility',
11
-
description:
12
-
'Textwire allows you to define custom functions, components, layouts, and custom error pages, giving you the flexibility to create complex templates with ease',
9
+
title: '🔒 Security',
10
+
description: `Built with security-first design, Textwire prevents code injection and common vulnerabilities by default`,
13
11
},
14
12
{
15
-
title: 'Performance',
16
-
description:
17
-
'Textwire is fast and has a low memory footprint, making it load pages quickly. The parsing is done at application startup, so there is no overhead during runtime',
13
+
title: '🎨 Template Customization',
14
+
description: 'Define custom functions, components, layouts, and error pages with full control over template structure',
18
15
},
19
16
{
20
-
title: 'Error Handling',
21
-
description:
22
-
'Textwire provides detailed error messages with line numbers and file names, making it easier to debug your templates',
17
+
title: '🐛 Error Handling',
18
+
description: `Detailed error messages with line numbers and file names for efficient template debugging`,
23
19
},
24
20
{
25
-
title: 'Syntax Highlighting',
26
-
description:
27
-
'You get syntax highlighting and other features for Textwire using the Neovim plugin and VSCode extension',
21
+
title: '🖋 Editor Integration',
22
+
description: 'Neovim and VSCode extensions provide syntax highlighting and editor integration',
28
23
},
29
24
{
30
-
title: 'Perfect Docs',
31
-
description:
32
-
'We have a comprehensive documentation that covers all the features and provides examples to help you get started',
33
-
},
25
+
title: '📚 Documentation',
26
+
description: 'Comprehensive documentation with examples covering all features and getting started guides',
0 commit comments