<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>R Markdown, cheat sheet | Alex Hildebrandt</title><link>https://alexhildebrandt.de/tag/r-markdown-cheat-sheet/</link><atom:link href="https://alexhildebrandt.de/tag/r-markdown-cheat-sheet/index.xml" rel="self" type="application/rss+xml"/><description>R Markdown, cheat sheet</description><generator>Source Themes Academic (https://sourcethemes.com/academic/)</generator><language>en-us</language><lastBuildDate>Wed, 13 May 2020 00:00:00 +0000</lastBuildDate><image><url>https://alexhildebrandt.de/images/icon_hu4c6883ab8262edd297260ea54e77bd73_39834_512x512_fill_lanczos_center_2.png</url><title>R Markdown, cheat sheet</title><link>https://alexhildebrandt.de/tag/r-markdown-cheat-sheet/</link></image><item><title>Markdown cheat sheet</title><link>https://alexhildebrandt.de/post/markdown-cheat-sheet/</link><pubDate>Wed, 13 May 2020 00:00:00 +0000</pubDate><guid>https://alexhildebrandt.de/post/markdown-cheat-sheet/</guid><description>
&lt;div id="basic-stuff" class="section level1">
&lt;h1>Basic stuff&lt;/h1>
&lt;p>&lt;strong>bold text&lt;/strong> :&lt;/p>
&lt;pre>&lt;code>use asterics like this: **its bold**&lt;/code>&lt;/pre>
&lt;hr />
&lt;p>&lt;strong>italic text&lt;/strong> :&lt;/p>
&lt;pre>&lt;code>use underscore like this: _its italic_&lt;/code>&lt;/pre>
&lt;hr />
&lt;p>&lt;strong>&lt;em>bold &amp;amp; italic&lt;/em>&lt;/strong> :&lt;/p>
&lt;pre>&lt;code>use asterics and underscore **_bold&amp;amp;italic_**&lt;/code>&lt;/pre>
&lt;hr />
&lt;p>&lt;strong>header&lt;/strong>: use hash mark (the more the smaller the header become)&lt;/p>
&lt;pre>&lt;code>#header
##header
###header
####header&lt;/code>&lt;/pre>
&lt;hr />
&lt;p>&lt;strong>Links&lt;/strong> : &lt;a href="www.github.com">Inline links&lt;/a>&lt;/p>
&lt;pre>&lt;code>[Visit GitHub!](www.github.com)&lt;/code>&lt;/pre>
&lt;hr />
&lt;p>&lt;strong>Links&lt;/strong> : &lt;a href="www.github.com">Reference links&lt;/a>&lt;/p>
&lt;pre>&lt;code> Here&amp;#39;s [a link to something else][another place].
Here&amp;#39;s [yet another link][another-link].
And now back to [the first link][another place].
[another place]: www.github.com
[another-link]: www.google.com&lt;/code>&lt;/pre>
&lt;hr />
&lt;p>&lt;strong>Images&lt;/strong> : Inline image link with the titel &lt;em>Benjamin Bannekat&lt;/em>&lt;/p>
&lt;pre>&lt;code>![Benjamin Bannekat](https://octodex.github.com/images/bannekat.png&lt;/code>&lt;/pre>
&lt;div class="figure">
&lt;img src="https://octodex.github.com/images/bannekat.png" alt="Benjamin Bannekat" />
&lt;p class="caption">Benjamin Bannekat&lt;/p>
&lt;/div>
&lt;hr />
&lt;p>&lt;strong>Blockquotes&lt;/strong> : Just use the bigger than &lt;strong>‘&amp;gt;’&lt;/strong> character&lt;/p>
&lt;blockquote>
&lt;p>text with blockquote&lt;/p>
&lt;/blockquote>
&lt;hr />
&lt;p>&lt;strong>Lists&lt;/strong>: use asterics&lt;/p>
&lt;pre>&lt;code>* Milk
* Eggs
* Salmon
* Butter&lt;/code>&lt;/pre>
&lt;ul>
&lt;li>Milk&lt;/li>
&lt;li>Eggs&lt;/li>
&lt;li>Salmon&lt;/li>
&lt;li>Butter&lt;/li>
&lt;/ul>
&lt;hr />
&lt;div id="reference-markdown-tutorial-r-markdown-the-definitive-guide-pdf-cheat-sheet" class="section level3">
&lt;h3>Reference: &lt;a href="https://www.markdowntutorial.com/">&lt;em>Markdown tutorial&lt;/em>&lt;/a>, &lt;a href="https://bookdown.org/yihui/rmarkdown/">&lt;em>R Markdown: The definitive guide&lt;/em>&lt;/a>, &lt;a href="https://rstudio.com/wp-content/uploads/2015/06/rmarkdown-german.pdf">PDF cheat sheet&lt;/a>&lt;/h3>
&lt;/div>
&lt;/div></description></item></channel></rss>