💾 Archived View for gmi.noulin.net › gitRepositories › forb › file › template › about.md.gmi captured on 2023-01-29 at 13:26:22. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
about.md (881B)
1 --- 2 layout: page 3 title: About 4 permalink: /about/ 5 --- 6 7 This is forb's default template. 8 9 You can find the source code for forb at: 10 [forb git](https://noulin.net/forb/file/README.md.html) 11 12 # About markdown 13 14 The markdown standard in forb is `CommonMark` with tables. 15 16 - Table example: 17 ``` 18 | Line 1, Column A - Title line in Bold | Column B - Title line in Bold | 19 | Line 2, A | 2B | 20 21 ``` 22 23 - Link to external page: 24 ``` 25 (title)[url] 26 ``` 27 28 - Image in post: 29 ``` 30 !(title)[%baseurl/images/img.png] 31 32 When baseurl="/blog", write: 33 !(title)[/blog/images/img.png] 34 ``` 35 36 - Link to another post in blog: 37 ``` 38 [another post](_%baseurl{% post_url POST_FILENAME_WITHOUT_MARKDOWN_EXTENSION %}) 39 40 Keep "_%baseurl", forb replaces it with the value in _config.yml, 41 after post_url write the post filename to be linked without ".markdown": 42 [another post](_%baseurl{% post_url 2020-06-09-getting-started %}) 43 ```