💾 Archived View for gmi.noulin.net › markdown › forb_template_about.md captured on 2023-07-10 at 18:18:09.

View Raw

More Information

-=-=-=-=-=-=-

---
layout: page
title: About
permalink: /about/
---

This is forb's default template.

You can find the source code for forb at:
[forb git](https://noulin.net/forb/file/README.md.html)

# About markdown

The markdown standard in forb is `CommonMark` with tables.

- Table example:

| Line 1, Column A - Title line in Bold | Column B - Title line in Bold |

| Line 2, A | 2B |


- Link to external page:

(title)[url]


- Image in post:

!(title)[%baseurl/images/img.png]

When baseurl="/blog", write:

!(title)[/blog/images/img.png]


- Link to another post in blog:

[another post](_%baseurl{% post_url POST_FILENAME_WITHOUT_MARKDOWN_EXTENSION %})

Keep "_%baseurl", forb replaces it with the value in _config.yml,

after post_url write the post filename to be linked without ".markdown":

[another post](_%baseurl{% post_url 2020-06-09-getting-started %})