Markdown: Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 70: | Line 70: | ||
> in the future than in the past. | > in the future than in the past. | ||
</pre> | </pre> | ||
[[Category:Programming]] |
Latest revision as of 15:13, 28 September 2024
Headers
# This is an <h1> tag ## This is an <h2> tag ###### This is an <h6> tag
Emphasis
*This text will be italic* _This will also be italic_ **This text will be bold** __This will also be bold__ *You **can** combine them*
Lists
* Item 1 * Item 2 * Item 2a * Item 2b
1. Item 1 2. Item 2 3. Item 3 * Item 3a * Item 3b
Links
[I'm an inline-style link](https://www.google.com) [I'm a relative reference to a repository file](../blob/master/LICENSE)
Images
Inline-style: ![alt text](https://url/image.png)
Code and Syntax Highlight
Inline `code` has `back-ticks around` it.
```javascript function test() { console.log("look ma’, no spaces"); } ```
Tables
First Header | Second Header ------------ | ------------- Content cell 1 | Content cell 2 Content column 1 | Content column 2
Blockquotes
As Grace Hopper said: > I’ve always been more interested > in the future than in the past.