Skip to content
Snippets Groups Projects
Commit 2a76cb50 authored by Vilem Ded's avatar Vilem Ded
Browse files

fixing render

parent 6afee0bb
No related branches found
No related tags found
No related merge requests found
...@@ -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>
&nbsp;&nbsp;&nbsp;&nbsp;1. Indented item &nbsp;&nbsp;&nbsp;&nbsp;1. Indented item<br>
&nbsp;&nbsp;&nbsp;&nbsp;1. Indented item &nbsp;&nbsp;&nbsp;&nbsp;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
&nbsp;&nbsp;&nbsp;&nbsp;* Indented item </code>
&nbsp;&nbsp;&nbsp;&nbsp;+ 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 <a href="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: ![My awesome picture](PATH/TO/IMAGE/img.png)
<td> </code>
Include links referring to a web <a href="https://www.markdownguide.org/">page</a> </td>
</td> <td>
</tr> Include local pictures: <img src="img/r3_logo.png">
<tr> </td>
<td> </tr>
<tr>
<pre> <td>
Include local pictures using markdown: <code>
Include code blocks! <br>
![My awesome picture](img/r3_logo.png) ```
</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>
&lt;img src="img/r3_logo.png" width="40"&gt </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>
<input type="checkbox"> Josh, Alice and Cindy will do this.<br> <h2> Actions</h2><br>
<input type="checkbox" checked="checked"> Bob stops doing that.<br> <input type="checkbox" > Josh, Alice and Cindy will do this.</input><br>
<input type="checkbox"> Vanessa and Tom will take care of those<br> <input type="checkbox" checked="checked"> Bob stops doing that.</input><br>
</td> <input type="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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment