Markdown
Dropdown in Markdown
<details>
<summary>Click here to expand the dropdown</summary>
This is the hidden content that appears when clicked!
</details>
- Make the title bold using
<strong>title_here</strong>
Output:
Click here to expand the dropdown
This is the hidden content that appears when clicked!
Setext Headings
These are equivalent to # headings
Heading 1
=========
Heading 2
---------
Output:
Heading 1
Heading 2
Backticks inside inline code
``use `git` here``
Output:
use `git` here
Longer fences
Need triple backticks inside a code block?
```
hello
```
Reference-style links
Instead of:
[OpenAI](https://openai.com)
you can write:
[MyWebsite][site]
[site]: https://004ajay.github.io/
Useful for documents with many repeated links.
Output:
MyWebsite (this uses the 2nd method)
Nested blockquotes
> Level 1
>> Level 2
>>> Level 3
Output:
Level 1
Level 2
Level 3