Student & Academic39 entries

Markdown Syntax

Headings, formatting, links, images, code blocks, tables, and GitHub-flavored markdown

1Headings

# Heading 1
Largest heading (H1)
## Heading 2
Second level heading (H2)
### Heading 3
Third level heading (H3)
#### Heading 4
Fourth level heading (H4)

2Text Formatting

**bold**
Bold text
*italic*
Italic text
***bold italic***
Bold and italic
~~strikethrough~~
Strikethrough text
`inline code`
Inline code
> blockquote
Blockquote
---
Horizontal rule

3Links & Images

[text](url)
Inline link
[text](url "title")
Link with hover title
![alt](image-url)
Image
[ref]: url
Reference-style link definition
<https://example.com>
Auto-linked URL

4Lists

- item
Unordered list item (also * or +)
1. item
Ordered list item
- nested
Nested list (indent 3-4 spaces)
- [x] done
Task list (checked)
- [ ] todo
Task list (unchecked)

5Code Blocks

```language\ncode\n```
Fenced code block with syntax highlighting
```js\nconsole.log()\n```
JavaScript code block
indented code
Code block (indent 4 spaces)

6Tables

| H1 | H2 |
Table header row
| --- | --- |
Table separator (required)
| cell | cell |
Table data row
| :--- | ---: | :---: |
Left, right, center alignment

7GitHub Flavored Markdown

> [!NOTE]
Note alert box
> [!WARNING]
Warning alert box
> [!TIP]
Tip alert box
#123
Issue/PR reference
@username
User mention
:emoji_name:
Emoji shortcode

8Footnotes & Extras

text[^1]
Footnote reference
[^1]: footnote text
Footnote definition
==highlight==
Highlighted text (some parsers)
H~2~O
Subscript (some parsers)
X^2^
Superscript (some parsers)