docs.gno

1.34 Kb ยท 29 lines
 1package docs
 2
 3func Render(_ string) string {
 4	return `# Gno Examples Documentation
 5
 6Welcome to the Gno examples documentation index.
 7Explore various examples to learn more about Gno functionality and usage.
 8
 9## Examples
10
11- [Hello World](/r/docs/hello) - A simple introductory example.
12- [Adder](/r/docs/adder) - An interactive example to update a number with transactions.
13- [Source](/r/docs/source) - View realm source code.
14- [Buttons](/r/docs/buttons) - Add buttons to your realm's render.
15- [AVL Pager](/r/docs/avl_pager) - Paginate through AVL tree items.  
16- [AVL Pager + Render paths](/r/docs/avl_pager_params) - Handle render arguments with pagination.
17- [Img Embed](/r/docs/img_embed) - Demonstrates how to embed an image.
18- [Optional Render](/r/docs/optional_render) - Render() is optional in realms.
19- [MiniSocial](/r/docs/minisocial) - Minimalistic social media app for learning purposes.
20- [Markdown](/r/docs/markdown) - Documentation for Gno Flavored Markdown syntax and features.
21- [Resolving usernames and addresses](/r/docs/users) - How to resolve usernames and addresses via the r/sys/users realm.
22- ...
23<!-- meta issue with suggestions: https://github.com/gnolang/gno/issues/3292 -->
24
25## Other resources
26
27- [Official documentation](https://github.com/gnolang/gno/tree/master/docs) <!-- should be /docs with gnoweb embedding the docs/ folder. -->
28`
29}