@@ -57,190 +57,102 @@ Markdown is a lightweight markup language with plain text formatting syntax whic
...
@@ -57,190 +57,102 @@ Markdown is a lightweight markup language with plain text formatting syntax whic
<h3>Header 3</h3><br>
<h3>Header 3</h3><br>
<h4>Header 4</h4>
<h4>Header 4</h4>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td>
<td>
<pre>
<code>
To make a text **bold**, use **double asterisk** or __underscores__ before and after a word or phrase.
To **bold** text, add **two asterisks** or __underscores__ before and after a word or phrase.<br>
To make a text **italic**, use *one asterisk* or _underscore_.
To make text **italic** text, add *one asterisks* or _underscores_.
</pre>
</code>
</td>
</td>
<td>
<td>
To make a text <strong>bold</strong>, use <strong>double asterisk</strong> or <strong>underscores</strong> before and after a word or phrase.<br>
To make phrase <strong>bold</strong> text, add <strong>two asterisks</strong> or <strong>underscores</strong> before and after a word or phrase.<br>
To make text <i>italic</i>, use <i>one asterisk</i> or <i>underscore</i>.
To make text <i>italic</i>, add <i>one asterisks</i> or <i>underscores</i>.
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td>
<td>
<pre>
<code>
Use numbers for ordered lists:
Use numbers for ordered lists: <br>
1. First item
1. First item<br>
2. Second item
2. Second item<br>
3. Third item
3. Third item<br>
1. Indented item
1. Indented item<br>
1. Indented item
2. Indented item<br>
4. Fourth item
4. Fourth item
</pre>
</code>
</td>
</td>
<td>
<td>
Use numbers for ordered lists:
<ol>
<ol>
<li>First item</li>
<li>First item</li>
<li>Second item</li>
<li>Second item</li>
<li>Third item
<li>Third item
<ol>
<ol>
<li>Indented item</li>
<li>Indented item</li>
<li>Indented item</li>
<li>Indented item</li>
</ol>
</ol>
</li>
</li>
<li>Fourth item</li>
<li>Fourth item</li>
</ol>
</ol>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td>
<td>
<code>
<pre>
For unordered lists
For unordered lists use asterisk, minus or plus
* First item<br>
- First item
* Second item<br>
- Second item
* Third item<br>
* Third item
* Fourth item
* Indented item
</code>
+ Indented item
</td>
* Fourth item
<td>
</pre>
<ul>
</td>
<li>First item</li>
<td>
<li>Second item</li>
For unordered lists use asterisk, minus or plus
<li>Third item</li>
<ul>
<li>Fourth item</li>
<li>First item</li>
</ul>
<li>Second item</li>
</td>
<li>Third item</li>
</tr>
<ul>
<tr>
<li>Indented item</li>
<td>
<li>Indented item</li>
<code>
</ul>
Include links referring to a web [page](https://www.markdownguide.org/)
<li>Fourth item</li>
</code>
</ul>
</td>
</td>
<td>
</tr>
Include links referring to a web <ahref="https://www.markdownguide.org/">page</a>
<tr>
</td>
<td>
</tr>
<pre>
<tr>
Include links referring to a web [page](https://www.markdownguide.org/)
<td>
</pre>
<code>
</td>
Include local pictures: 
<td>
</code>
Include links referring to a web <ahref="https://www.markdownguide.org/">page</a>
</td>
</td>
<td>
</tr>
Include local pictures: <imgsrc="img/r3_logo.png">
<tr>
</td>
<td>
</tr>
<tr>
<pre>
<td>
Include local pictures using markdown:
<code>
Include code blocks! <br>

```
</pre><br>
myAwesomeFunction <- function(x) x+1;<br>
<pre>
myAwesomeFunction(2);<br>
Or use HTML tag allowing you to alter the image properties (e.g. size):
```
</code>
<img src="img/r3_logo.png" width="40">
</td>
</pre>
<td>
</td>
Include code blocks! <br>
<td>
<code>
Include local pictures using markdown: <br>
myAwesomeFunction <-function(x)x+1;<br>
<img src="img/r3_logo.png"> <br>
myAwesomeFunction(2);
Or use HTML tag allowing you to alter the image properties (e.g. size):<br>
</code>
<img src="img/r3_logo.png" width="40">
</td>
</td>
</tr>
</tr>
<tr>
<td>
<pre>
Include code blocks!
```
def myAwesomeFunction(x):
x+1
myAwesomeFunction(2)
```
</pre>
</td>
<td>
Include code blocks! <br>
<code>
def myAwesomeFunction(x):<br>
x+1<br>
myAwesomeFunction(2)
</code>
</td>
</tr>
<tr>
<td>
<pre>
Create table:
| Tables | Are | Cool |
|------------|:------:|:-----:|
| value one | blue | $1024 |
| value two | red | $256 |
| value three| green | $128 |
</pre>
</td>
<td>
Create table:
<div>
<table>
<thead>
<tr>
<th>
Tables
</th>
<th>
Are
</th>
<th>
Cool
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
value one
</td>
<td>
blue
</td>
<td>
$1024
</td>
</tr>
<tr>
<td>
value two
</td>
<td>
red
</td>
<td>
$256
</td>
</tr>
<tr>
<td>
value tree
</td>
<td>
green
</td>
<td>
$128
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</tbody>
</table>
</table>
...
@@ -270,41 +182,42 @@ Another big advantage of Markdown is that it can contain HTML tags, which makes
...
@@ -270,41 +182,42 @@ Another big advantage of Markdown is that it can contain HTML tags, which makes
</tr>
</tr>
</thead>
</thead>
<tbody>
<tbody>
<tr>
<tr>
<td>
<td>
<pre>
<code>
# DocTitle
# DocTitle<br>
### Attendees:
### Attendees:<br>
### Location:
### Location:<br>
## Objective / Agenda
## Objective / Agenda<br>
## Meeting Notes
## Meeting Notes<br>
* first note
* first note <br>
* second note
* second note <br>
* ...
* ...<br>
## Actions
<br>
- [ ] Josh, Alice and Cindy will do this.
## Actions<br>
- [x] Bob stops doing that.
- [ ] Josh, Alice and Cindy will do this.<br>
- [ ] Will and Tom will take care of those
- [x] Bob stops doing that.<br>
</pre>
- [ ] Will and Tom will take care of those
</td>
</code>
<td>
</td>
<h1>DocTitle</h1><br>
<td>
<h3> Attendees:</h3><br>
<h1>DocTitle</h1><br>
<h3> Location:</h3><br>
<h3> Attendees:<h3><br>
<h2> Objective / Agenda</h2><br>
<h3> Location:</h3><br>
<h2> Meeting Notes</h2><br>
<h2> Objective / Agenda</h2><br>
<ul>
<h2> Meeting Notes</h2><br>
<li> first note</li>
<ul>
<li>second note</li>
<li> first note</li>
<li>...</li>
<li>second note</li>
</ul>
<li>...</li>
<h2> Actions</h2><br>
</ul>
<inputtype="checkbox"> Josh, Alice and Cindy will do this.<br>
<h2> Actions</h2><br>
<inputtype="checkbox"checked="checked"> Bob stops doing that.<br>
<inputtype="checkbox"> Josh, Alice and Cindy will do this.</input><br>
<inputtype="checkbox"> Vanessa and Tom will take care of those<br>
<inputtype="checkbox"checked="checked"> Bob stops doing that.</input><br>
</td>
<inputtype="checkbox"> Vanessa and Tom will take care of those</input><br>
</tr>
</td>
</tbody>
</tr>
</tbody>
</table>
</table>
***Analyses, reports and papers** - embedding [R markdown](https://rmarkdown.rstudio.com/) in an R project allows you to include executable code and related text in the very same document. This brings unprecedented level of consistency, shareability and reproducibility into the workflows.
***Analyses, reports and papers** - embedding [R markdown](https://rmarkdown.rstudio.com/) in an R project allows you to include executable code and related text in the very same document. This brings unprecedented level of consistency, shareability and reproducibility into the workflows.