-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.page
31 lines (26 loc) · 1.2 KB
/
about.page
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
title: Markdown
description: Converts Markdown syntax to HTML.
icon: 'M20.56 18H3.44C2.65 18 2 17.37 2 16.59V7.41C2 6.63 2.65 6 3.44 6H20.56C21.35 6 22 6.63 22 7.41V16.59C22 17.37 21.35 18 20.56 18M6.81 15.19V11.53L8.73 13.88L10.65 11.53V15.19H12.58V8.81H10.65L8.73 11.16L6.81 8.81H4.89V15.19H6.81M19.69 12H17.77V8.81H15.85V12H13.92L16.81 15.28L19.69 12Z'
color: '#0f709d'
link: 'https://github.com/taufik-nurrohman/markdown'
author: Taufik Nurrohman
type: Markdown
version: 3.1.0
...
Markdown is two things: a plain text markup syntax, and a software tool that converts plain text markup to HTML for
publishing on the web. The Markdown syntax allows you to write text naturally and format it without using HTML tags.
More importantly: in Markdown format, your text stays enjoyable to read for a human being, and this is true enough that
it makes a Markdown document publishable as-is, as plain text. If you are using text-formatted email, you already know
some part of the syntax.
### Usage
In your page header, add `type` property with value set to `Markdown` or `text/markdown`:
~~~ .yaml
---
title: Page Title
description: Page description.
author: Taufik Nurrohman
type: Markdown
...
This is a **bold** text.
~~~