All markdown commands
MarkDown (MD) Howto
Below is the cheat sheet for markdown, markdown is used to create this documentation. The markdown files are converted to static HTML files so that we have a fast documentation environment for Certificate Manager.
Markdown Syntax cheatsheet
| Element | Markdown syntax |
|---|---|
| Heading | # H1 ## H2 ### H3 |
| Bold | **bold text** |
| Italic | *Italic text* |
| Subscript | <sub></sub> |
| Superscript | <sup></sup> |
| Underline | <ins></ins> |
| Blockquote | > blockquote |
| Ordered list | 1. James Madison 2. James Monroe 3. John Quincy Jones |
| Unordered list | - first item - Second item - Third item |
| Code | code |
| Horizontal Rule | --- |
| Link | [title](https://www.certificatemanager.net) |
| Image |  |
Extended Syntax
| Element | Markdown Syntax |
|---|---|
| table | ` |
| Fenced Code Block | ---{ "FirstName": "John","LastName": "Smith", "Age": "25" }--- |
| Footnote | Here's a sentence with a footnote. [^1] [^1]: this is the footnote |
| Heading ID | ### My great Heading {#custom-id} |
| Link attribute | {:target="_blank"} |
| Definition List | term : definition |
| Strikethrough | ~~the world is flat~~ |
| Task List | - [x] Write the press release- [ ] Update the website- [ ] Contact the media |
| Emoji | that is so funny! :joy: |