package markdown import "strings" // this package can be used to test markdown rendering engines. func Render(path string) string { output := `# Markdown on Gno ## Introduction Markdown on Gno is based on standard markdown, but also has some unique features, making it the Gno Flavored Markdown. This document describes the current markdown support in Gno, demonstrating both the syntax and its rendered output. > [!NOTE] > Markdown support in Gno is still evolving. New features and improvements will be added in future releases. ## Basic Syntax ### Headings Headings are created using hash symbols (#). The number of hash symbols indicates the heading level. ±±±markdown # Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6 ±±± # Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6 ### Text Formatting You can format text using the following syntax: ±±±markdown **Bold text** *Italic text* ~~Strikethrough text~~ **Bold and _nested italic_** ***All bold and italic*** ±±± **Bold text** *Italic text* ~~Strikethrough text~~ **Bold and _nested italic_** ***All bold and italic*** ### Links Links can be created using the following syntax: ±±±markdown [Link text](https://example.com) [Link with title](https://example.com "Link title") ±±± [Link text](https://example.com) [Link with title](https://example.com "Link title") XXX: custom CSS for internal/external links and if possible for "in the same realm/namespace". ### Lists Unordered lists use asterisks, plus signs, or hyphens: ±±±markdown * Item 1 * Item 2 * Nested item 1 * Nested item 2 ±±± * Item 1 * Item 2 * Nested item 1 * Nested item 2 Ordered lists use numbers: ±±±markdown 1. First item 2. Second item 1. Nested item 1 2. Nested item 2 ±±± 1. First item 2. Second item 1. Nested item 1 2. Nested item 2 ### Blockquotes Blockquotes are created using the > character: ±±±markdown > This is a blockquote > > It can span multiple lines ±±± > This is a blockquote > > It can span multiple lines ### Code Inline code uses single backticks: ±±±markdown Use ±func main()± to define the entry point. ±±± Use ±func main()± to define the entry point. Code blocks use triple backticks with an optional language identifier: ±±±markdown ±±±go package main func main() { println("Hello, Gno!") } ±±± ±±±go package main func main() { println("Hello, Gno!") } ±±± ### Horizontal Rules Horizontal rules are created using three or more asterisks, hyphens, or underscores: ±±±markdown --- ±±± --- ## Tables Tables are created using pipes and hyphens: ±±±markdown | Header 1 | Header 2 | | -------- | -------- | | Cell 1 | Cell 2 | | Cell 3 | Cell 4 | ±±± | Header 1 | Header 2 | | -------- | -------- | | Cell 1 | Cell 2 | | Cell 3 | Cell 4 | ## Images Images can be included using the following syntax: ±±±markdown ![Alt text](/public/imgs/gnoland.svg "Optional title") ±±± ![Alt text](/public/imgs/gnoland.svg "Optional title") ## Gno-Specific Features ### HTML Support By design, most typical HTML support is disabled in Gno's markdown implementation. This is an intentional decision for both security and ecosystem cohesion. While traditional markdown often allows arbitrary HTML tags, Gno Flavored Markdown takes a more controlled approach: - We may progressively whitelist certain HTML components or add custom ones over time - Our priority is to enhance our flavored markdown to natively support all essential components - We aim to eventually support all the initially HTML-supported features, but with syntax that is: - More readable when viewing the source directly - More integrable with custom browsers such as gnobro in CLI This approach allows for a more consistent rendering experience across different Gno interfaces while maintaining security and readability as core principles. ### Columns Gno Flavored Markdown introduces a column layout system using special HTML-like tags. This system allows content to be organized into multiple vertical columns using heading elements as separators. On GnoWeb, up to four columns can be displayed in a single row; exceeding this limit will transfer additional columns to another row, and so on. #### Basic Syntax Wrap your column content in ±± tags and use standard markdown headings (from h1 ±#± to h6 ±######±) to define column breaks: ±±±markdown ## Column 1 Title Column 1 content ## Column 2 Title Column 2 content ±±± This will render as: ## Column 1 Title Column 1 content ## Column 2 Title Column 2 content --- #### Key Features 1. **Heading Levels**: Any heading level from ±#± (h1) to ±######± (h6) can be used as column separators. The first one will be the reference for subsequent separator. ±±±markdown # Main Section Content ## Subsection More content # Second section Content ## Subsection More content ±±± ## Main Section Content ### Subsection More content ## Second section Content ### Subsection More content --- 2. **Empty Headings**: Use empty headings to create columns without titles: ±±±markdown ### ![Alt text](/public/imgs/gnoland.svg "Optional title") Content without title ### Second Column Another column ±±± ### ![Alt text](/public/imgs/gnoland.svg "Optional title") Content without title ### Second Column Another column #### Validation Rules The column system will ignore invalid structures and generate errors in the form of comments in the following cases: 1. Unclosed Tags ±±±markdown ## Title Content ±±± 2. Nested Columns Nested columns tag will be ignored, e.g. ±±±markdown ## Parent ## Child ±±± 3. Invalid Headings. Invalid stating heading will generate an error, e.g. - Headings in list: ±±±markdown - ## List Heading ±±± - Headings beyond h6: ±±±markdown ####### Invalid ±±± 4. Content Before First Heading Setting content before first heading, is considered as invalid and will generate an error. ±±±markdown Invalid content ## Title ±±± #### Best Pratices - Always start column content with a heading - Maintain consistent heading levels within a columns block - Close tags immediately after final column content - Prefer simple markdown structures within columns - Use empty headings (##) for image-focused columns ### Usernames XXX: TODO (add again this feature that was removed) ### Bech32 Addresses XXX: TODO Gno markdown can automatically recognize and render Bech32 addresses. ±±±markdown g1jg955hm9a6f0yen878c2hur6q7stqz7rzpyrwpe ±±± g1jg955hm9a6f0yen878c2hur6q7stqz7rzpyrwpe ### Smart Contract Integration XXX: TODO ±±±markdown gno.land/r/boards gno.land/r/boards:foo/bar gno.land/r/docs/markdown$source ±±± gno.land/r/boards gno.land/r/boards:foo/bar gno.land/r/docs/markdown$source ### And more... XXX: TODO ## Future Enhancements The markdown support in Gno is being actively developed. Future enhancements may include: - Extended support for custom components - Interactive elements specific to blockchain functions - Rich rendering of on-chain data - Better integration with Gno's package system [Read more](https://github.com/gnolang/gno/issues/3255) ## Conclusion Markdown on Gno provides a familiar syntax for developers who have experience with GitHub Flavored Markdown, while adding blockchain-specific extensions that make it more powerful in the context of the Gno platform. As the Gno ecosystem grows, expect the markdown capabilities to expand accordingly, providing even richer formatting and interactive elements for documentation and user interfaces. ` output = strings.ReplaceAll(output, "±", "`") return output }