Top 4 Resources to Improve Your Medical Knowledge
This file contains various Markdown snippets that you may use to construct an article. Markdown is very easy to use!
Markdown Guide
h1 Heading
h2 Heading
h3 Heading
h4 Heading
h5 Heading
h6 Heading
# h1 Heading
## h2 Heading
### h3 Heading
#### h4 Heading
##### h5 Heading
###### h6 Heading
Horizontal Rules
___
---
***
Links
[Link Text](http://dev.nodeca.com)
[Link with Title](http://nodeca.github.io/pica/demo/ "Title Text!")
Images
Images are easy to use in Markdown.
![Stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat")
![Alt text goes here](./images/html-2.png)
Note that although possible with special configuration, you currently cannot modify the size of in-article images. The current max width is 650px. Please size image files accordingly for the fastest build times!
Emphasis
This is bold text
This is bold text
This is italic text
This is italic text
~~Strikethrough~~
**This is bold text**
__This is bold text__
*This is italic text*
_This is italic text_
~~Strikethrough~~
Blockquotes
IMPORTANT: If you don't see any styling here, we haven't decided on blockquote styling yet :)
Blockquotes can also be nested...
...by using additional greater-than signs right next to each other...
...or with spaces between arrows.
> Blockquotes can also be nested...
>> ...by using additional greater-than signs right next to each other...
>>> ...or with spaces between arrows.
Lists
Unordered
- Create a list by starting a line with
+
,-
, or*
- Very easy!
Ordered
- Lorem ipsum dolor sit amet
- Consectetur adipiscing elit
- Integer molestie lorem at massa
Start numbering with offset:
- foo
- bar
#### Unordered
- Create a list by starting a line with `+`, `-`, or `*`
- Very easy!
#### Ordered
1. Lorem ipsum dolor sit amet
2. Consectetur adipiscing elit
3. Integer molestie lorem at massa
###### Start numbering with offset:
158. foo
159. bar
Code
Inline code
Block code "fences"
Sample text here...
Can span multi lines
Inline `code`
Block code "fences"
```
Sample text here...
Can span multi lines
```
At the moment, we have not implemented syntax highlighting. We recommend either prismjs or highlightjs if you'd like to add highlighting!
Tables
Currently, we do not use HTML tables, however we may implement styling for this if there is a use-case in the future.