Syntax
Back to markdownWe are supporting:
- Hash symbol (#): For title. Example:
# This is H1 tag ## This is H2 tag ### This is H3 tag
- Asterisk symbol (*): For em and strong tags. Example:
* This is em tag * ** This is em tag ** *** This is em and strong tag ***
- One backtick symbol (`): For inline code. Example: `console.log("Hello")`.
- ```[Language] Code Block```: For code block. Example:
```java public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World"); } } ```
- Hyphen symbol (-): For ul tag. Example:
- List item 1 - List item 2
- 1., 2., 3.: For ol tag. Example:
1. List item 1 2. List item 2
- ~Content~: For strike tag
- [Title](url): For a tag
- ![Alt Text](url): For img tag
You also can use any HTML tag.