Markdown Style
Format for plain-text readability. Style preferences only; assumes Markdown knowledge.
Headings
Use Setext-style for level 1 and 2 headings:
markdown
Document Title ============== Section Heading ---------------
Use ATX-style for level 3 and deeper:
markdown
### Subsection #### Sub-subsection
Lists
Use a hyphen ("-") for bullet list markers.
Emphasis
Bold with asterisks (e.g., **bold**). Italicize with underscores (e.g., _italic_).
Code
All instances of code or shell session examples should go into fenced code blocks.
typescript
console.log('Hello world!');
sh-session
git diff
Spacing
- •One blank line between block elements (e.g., headings, paragraphs, block quotations, lists, headings, rules, code blocks, etc.).
- •No trailing whitespace.
- •Single newline at end of file.