<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>blogdown | Thought splinters</title>
    <link>https://notes.peter-baumgartner.net/tag/blogdown/</link>
      <atom:link href="https://notes.peter-baumgartner.net/tag/blogdown/index.xml" rel="self" type="application/rss+xml" />
    <description>blogdown</description>
    <generator>Wowchemy (https://wowchemy.com)</generator><language>en-us</language><copyright>CC BY-SA 4.0</copyright><lastBuildDate>Fri, 02 Aug 2019 00:00:00 +0000</lastBuildDate>
    <image>
      <url>https://notes.peter-baumgartner.net/media/icon_huab1e86cf5cbc1139acf672dc60b9d7d0_5213_512x512_fill_lanczos_center_2.png</url>
      <title>blogdown</title>
      <link>https://notes.peter-baumgartner.net/tag/blogdown/</link>
    </image>
    
    <item>
      <title>Announcing the R package coinsR</title>
      <link>https://notes.peter-baumgartner.net/2019/08/02/announcing-the-r-package-coinsr/</link>
      <pubDate>Fri, 02 Aug 2019 00:00:00 +0000</pubDate>
      <guid>https://notes.peter-baumgartner.net/2019/08/02/announcing-the-r-package-coinsr/</guid>
      <description>&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Update 2021-05-21: Because of some breaking changes in the Hugo site structure and management in the last three years, &lt;code&gt;coinsR&lt;/code&gt; works at the moment only with individual pages.
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;This blog entry announces the R program &lt;code&gt;coinsR&lt;/code&gt; to produce bibliographic metadata automatically for websites within the Hugo framework. The dominant use case at the moment is with the &lt;code&gt;blogdown&lt;/code&gt; package.&lt;/p&gt;
&lt;p&gt;In a &lt;a href=&#34;https://notes.peter-baumgartner.net/2019/06/19/bibliographic-metadata-for-your-web-page/&#34;&gt;previous blog entry&lt;/a&gt; I wrote about the advantages of providing bibliographic metadata for your web pages producing COinS. COinS is the abbreviation of &lt;a href=&#34;https://en.wikipedia.org/wiki/COinS&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Context Objects in Spans&lt;/a&gt;. It refers to a &lt;a href=&#34;https://www.univie.ac.at/elib/index.php?title=COinS_Microfromat_Bibliographic_Metadata_for_Embedding_in_HTML&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;microformat standard to embed bibliographic metadata as HTML&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;A COinS string includes HTML code for all the information necessary to cite a publication correctly. It works for every type of writing (books, papers, web pages). COinS embedded in your HTML pages help your blog readers or website visitors to cite your posts and pages correctly.&lt;/p&gt;
&lt;p&gt;I wrote also a &lt;a href=&#34;https://notes.peter-baumgartner.net/2019/06/19/how-to-produce-bibliographic-metadata-for-you-web-page/&#34;&gt;detailed tuorial&lt;/a&gt; how to produce COinS with the help of the free bibliographical research tool &lt;a href=&#34;https://www.zotero.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Zotero&lt;/a&gt;. But this is a quite complicated procedure with several steps. Besides, it works only for every page individually and not automatically for all blog entries of your website.&lt;/p&gt;
&lt;p&gt;To produce COinS for every web page quickly was my motivation to write the R package &lt;code&gt;coinsR&lt;/code&gt;.&lt;/p&gt;



&lt;h2 id=&#34;use-cases-of-coinsr-and-its-limitations&#34;&gt;Use cases of &lt;code&gt;coinsR&lt;/code&gt; and its limitations&lt;a href=&#34;#use-cases-of-coinsr-and-its-limitations&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;The package requires:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&#34;https://gohugo.io&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hugo&lt;/a&gt; with the R package &lt;a href=&#34;https://bookdown.org/yihui/blogdown/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;blogdown&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Config file in the TOML format (config.toml)&lt;/li&gt;
&lt;li&gt;Blog entries with YAML frontmatter&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I plan for a future version to loosen the last two limitations and allow config.yaml and TOML frontmatter (but not for .json).&lt;/p&gt;
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Update 2021-05-21: This plan is still relevant: I would like to loosen some restrictions and improve the user interface.
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;You can call &lt;code&gt;coinsR&lt;/code&gt; via an RStudio Addin for every page individually. But you can also produce COinS automatically for all files under a specific directory.&lt;/p&gt;



&lt;h2 id=&#34;where-to-find-coinsr-and-how-to-install-it&#34;&gt;Where to find &lt;code&gt;coinsR&lt;/code&gt; and how to install it?&lt;a href=&#34;#where-to-find-coinsr-and-how-to-install-it&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;You can download the package from Github with&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;remotes::install_github(&#39;petzi53/coinsR&#39;, build_vignettes = TRUE)
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I am trying to prepare &lt;code&gt;coinsR&lt;/code&gt; as an R package distributed via the &lt;a href=&#34;https://cran.r-project.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;CRAN repository&lt;/a&gt;. But as I am still not very experienced in R programming, I am not sure if I will succeed.&lt;/p&gt;
&lt;p&gt;You will find a detailed description in the help file and the vignette description of how to invoke the two functions &lt;code&gt;coins_this()&lt;/code&gt; and &lt;code&gt;coins_all()&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;&lt;span class=&#39;Z3988&#39; title=&#39;url_ver=Z39.88-2004&amp;amp;ctx_ver=Z39.88-2004&amp;amp;rfr_id=info%3Asid%2Fzotero.org%3A2&amp;amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;amp;rft.type=blogPost&amp;amp;rft.title=Announcing%20the%20R%20package%20coinsR&amp;amp;rft.source=Thought%20splinters&amp;amp;rft.rights=CC%20BY-SA%204.0&amp;amp;rft.description=This%20blog%20entry%20announces%20the%20R%20program%20%60coinsR%60%20to%20produce%20bibliographic%20metadata%20automatically%20for%20websites%20within%20the%20Hugo%20framework.%20The%20dominant%20use%20case%20at%20the%20moment%20is%20with%20the%20%60blogdown%60%20package.&amp;amp;rft.identifier=https%3A%2F%2Fnotes.peter-baumgartner.net%2F2019%2F08%2F02%2Fannouncing-the-r-package-coinsr&amp;amp;rft.aufirst=Peter&amp;amp;rft.aulast=Baumgartner&amp;amp;rft.au=Peter%20Baumgartner&amp;amp;rft.date=2019-08-02&amp;amp;rft.language=en&#39;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class=&#39;Z3988&#39; title=&#39;url_ver=Z39.88-2004&amp;amp;ctx_ver=Z39.88-2004&amp;amp;rfr_id=info%3Asid%2Fzotero.org%3A2&amp;amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;amp;rft.type=blogPost&amp;amp;rft.title=Announcing%20the%20R%20package%20coinsR&amp;amp;rft.source=Thought%20splinters&amp;amp;rft.rights=CC%20BY-SA%204.0&amp;amp;rft.description=This%20blog%20entry%20announces%20the%20R%20program%20%60coinsR%60%20to%20produce%20bibliographic%20metadata%20automatically%20for%20websites%20within%20the%20Hugo%20framework.%20The%20dominant%20use%20case%20at%20the%20moment%20is%20with%20the%20%60blogdown%60%20package.&amp;amp;rft.identifier=https%3A%2F%2Fnotes.peter-baumgartner.net%2F2019%2F08%2F02%2Fannouncing-the-r-package-coinsr&amp;amp;rft.aufirst=Peter&amp;amp;rft.aulast=Baumgartner&amp;amp;rft.au=Peter%20Baumgartner&amp;amp;rft.date=2019-08-02&amp;amp;rft.language=en&#39;&gt;&lt;/span&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Wayback Machine Tutorial</title>
      <link>https://notes.peter-baumgartner.net/slides/2019-07-21-wayback-machine-tutorial/</link>
      <pubDate>Sun, 21 Jul 2019 00:00:00 +0000</pubDate>
      <guid>https://notes.peter-baumgartner.net/slides/2019-07-21-wayback-machine-tutorial/</guid>
      <description>How to use 


&lt;h2 id=&#34;how-to-use-wayback-machinehttpswebarchiveorg-slides&#34;&gt;&lt;a href=&#34;https://web.archive.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Wayback Machine&lt;/a&gt; (Slides)&lt;a href=&#34;#how-to-use-wayback-machinehttpswebarchiveorg-slides&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Use the controls on the right bottom of the screen.&lt;/li&gt;
&lt;li&gt;Watch out: sometimes there is not only left &amp;amp; right, but also top &amp;amp; down.&lt;/li&gt;
&lt;li&gt;Press &lt;code&gt;ALT&lt;/code&gt; key (&lt;code&gt;CTRL&lt;/code&gt; in Linux) and click on any element to zoom towards it. Click again to zoom back out.&lt;/li&gt;
&lt;li&gt;For an overview about the slide structure press &lt;code&gt;ESC&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;To end the presentation go back with the browser.&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
1. Wayback Machine 


&lt;h2 id=&#34;1-wayback-machine-start-pagehttpswebarchiveorg&#34;&gt;&lt;a href=&#34;https://web.archive.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Start Page&lt;/a&gt;&lt;a href=&#34;#1-wayback-machine-start-pagehttpswebarchiveorg&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/01-web.archive.org-home-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;
2. Choose 


&lt;h2 id=&#34;2-choose-save-page-nowhttpswebarchiveorgsave&#34;&gt;&lt;a href=&#34;https://web.archive.org/save&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Save Page Now&lt;/a&gt;&lt;a href=&#34;#2-choose-save-page-nowhttpswebarchiveorgsave&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/02-save-page-now-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;3-saving-page-without-outlinks&#34;&gt;3. Saving Page (without Outlinks)&lt;a href=&#34;#3-saving-page-without-outlinks&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/03-saved-page-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;4-saving-page-with-outlinks&#34;&gt;4. Saving page (with Outlinks)&lt;a href=&#34;#4-saving-page-with-outlinks&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/04-saved-page-with-outgoing-links-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;5-captured-page&#34;&gt;5. Captured page&lt;a href=&#34;#5-captured-page&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/05-captured-snapshot-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;6-retrieving-archived-page&#34;&gt;6. Retrieving archived page&lt;a href=&#34;#6-retrieving-archived-page&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/06-retrieved-web-page-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;
7. 


&lt;h2 id=&#34;7-searchhttpswebarchiveorg-for-archived-page&#34;&gt;&lt;a href=&#34;https://web.archive.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Search&lt;/a&gt; for archived page&lt;a href=&#34;#7-searchhttpswebarchiveorg-for-archived-page&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/07-searching-for-archived-web-pages-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;8-calender-view-of-archived-pages&#34;&gt;8. Calender view of archived page(s)&lt;a href=&#34;#8-calender-view-of-archived-pages&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/08-calender-view-of-wayback-machine-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;9-collections-of-archived-pages&#34;&gt;9. Collections of archived page(s)&lt;a href=&#34;#9-collections-of-archived-pages&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/09-show-type-of collections-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;10-select-captures-to-compare&#34;&gt;10. Select captures to compare&lt;a href=&#34;#10-select-captures-to-compare&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/10-select-archived-captures-to-compare-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;11-compare-two-captures&#34;&gt;11. Compare two captures&lt;a href=&#34;#11-compare-two-captures&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/11-compare-archived-captures-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;12-captures-in-site-map-view&#34;&gt;12. Capture(s) in Site Map view&lt;a href=&#34;#12-captures-in-site-map-view&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/12-exploring-captured-data-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;13-install-browser-extension&#34;&gt;13. Install browser extension&lt;a href=&#34;#13-install-browser-extension&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/13-wayback-machine-chrome-browser-extension-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;14-web-page-not-available&#34;&gt;14. Web page not available&lt;a href=&#34;#14-web-page-not-available&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/14-web-page-not-available-anymore-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;15-retrieved-web-page&#34;&gt;15. Retrieved web page&lt;a href=&#34;#15-retrieved-web-page&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/15-retrieved-archived-web-page-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;16-access-personal-web-archive&#34;&gt;16. Access personal web archive&lt;a href=&#34;#16-access-personal-web-archive&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/16-access-personal-web-archive-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;17-personal-web-archive&#34;&gt;17. Personal web archive&lt;a href=&#34;#17-personal-web-archive&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/17-personal-web-archive-min.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;close-presentation&#34;&gt;Close presentation&lt;a href=&#34;#close-presentation&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;Press back button of your browser.&lt;/p&gt;
&lt;p&gt;(not back button of the slide!).&lt;/p&gt;
&lt;p&gt;&lt;span class=&#39;Z3988&#39; title=&#39;url_ver=Z39.88-2004&amp;amp;ctx_ver=Z39.88-2004&amp;amp;rfr_id=info%3Asid%2Fzotero.org%3A2&amp;amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;amp;rft.type=blogPost&amp;amp;rft.title=Wayback%20Machine%20Tutorial%20::%20Open%20Science%20Education&amp;amp;rft.source=Wayback%20Machine%20Tutorial&amp;amp;rft.rights=CC%20BY-SA%204.0&amp;amp;rft.description=How%20to%20use%20Wayback%20Machine%20to%20Archive%20and%20Retrieve%20Web%20Resources&amp;amp;rft.identifier=https%3A%2F%2Fnotes.peter-baumgartner.net%2Fslide%2Fwayback-machine-tutorial&amp;amp;rft.aufirst=Peter&amp;amp;rft.aulast=Baumgartner&amp;amp;rft.au=Peter%20Baumgartner&amp;amp;rft.date=&amp;amp;rft.language=en&#39;&gt;&lt;/span&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Blog writing barriers to overcome</title>
      <link>https://notes.peter-baumgartner.net/2019/05/31/blog-writing-barriers-to-overcome/</link>
      <pubDate>Fri, 31 May 2019 00:00:00 +0000</pubDate>
      <guid>https://notes.peter-baumgartner.net/2019/05/31/blog-writing-barriers-to-overcome/</guid>
      <description>&lt;p&gt;Another year has elapsed since I wrote my last blog entry. At first, I thought the problem is only my English. But in the meanwhile, I see several other reasons why I do not blog for the new static website(s).&lt;/p&gt;
&lt;p&gt;I will elaborate later on the following thoughts. At the moment, I want to list the possible reasons for my blogging abstinence:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I am still not comfortable with the new community I want to address with these blog entries.&lt;/li&gt;
&lt;li&gt;The topics I want to cover are still relatively new for me so that I often believe that my reflections and discussions of these subjects are trivial and not worth reporting.&lt;/li&gt;
&lt;li&gt;I am doubtful which of my different upcoming ideas belongs to my German weblog &amp;ldquo;Gedankensplitter&amp;rdquo; and which is better suited for the English community.&lt;/li&gt;
&lt;li&gt;I am still struggling to get the focus right for my English blogging. In the last few months, I get a better feeling on which two topics I would like to concentrate: Open Science and Data Science. (More on these two topics and their relationship will follow in another blog entry.)&lt;/li&gt;
&lt;li&gt;From my professional point of view, I still generate most of the experiences and material in German such Interviews, Reviews, Talks, Lectures, etc..&lt;/li&gt;
&lt;li&gt;It is much more exciting for me to learn new things in R or about strategies for Open Science than to continue to blog frequently for my German weblog.&lt;/li&gt;
&lt;li&gt;There is not enough time to write for both weblogs. I wonder how other people like &lt;a href=&#34;https://statmodeling.stat.columbia.edu/&#34;&gt;Andrew Gelman&lt;/a&gt; write at least one blog entry every day, sometimes even 2 or three.&lt;/li&gt;
&lt;li&gt;Coming closer to my retirement the necessity to foster my professional online presence is not so vital anymore.&lt;/li&gt;
&lt;li&gt;The English language is also a barrier. I am not so comfortable and skilled to write in a witty and informal style as I am used to it in German.&lt;/li&gt;
&lt;li&gt;And finally there are these enormous complexities with blogdown and Hugo. There are so many software layers to watch out with all their difficulties arising for updates, incompatibilities, and bugs. As I have not used these technological infrastructures on a daily bases, it happened that I either forgotten many details. Instead of writing down my thoughts, I had to waste my time to re-learn the software tools.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;As you can see: A considerable bulk of difficulties and barriers to overcome! Some of the points of this list, I will reflect more in detail at a later time.&lt;/p&gt;
&lt;p&gt;&lt;span class=&#39;Z3988&#39; title=&#39;url_ver=Z39.88-2004&amp;amp;ctx_ver=Z39.88-2004&amp;amp;rfr_id=info%3Asid%2Fzotero.org%3A2&amp;amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;amp;rft.type=blogPost&amp;amp;rft.title=Blog%20writing%20barriers%20to%20overcome%20::%20Open%20Science%20Education&amp;amp;rft.source=Blog%20writing%20barriers%20to%20overcome&amp;amp;rft.rights=CC%20BY-SA%204.0&amp;amp;rft.description=Another%20year%20has%20elapsed%20since%20I%20wrote%20my%20last%20blog%20entry.%20At%20first,%20I%20thought%20the%20problem%20is%20only%20my%20English.%20But%20in%20the%20meanwhile,%20I%20see%20several%20other%20reasons%20why%20I%20do%20not%20blog%20for%20the%20new%20static%20website(s).&amp;amp;rft.identifier=https%3A%2F%2Fnotes.peter-baumgartner.net%2F2019%2F05%2F31%2Fblog-writing-barriers-to-overcome&amp;amp;rft.aufirst=Peter&amp;amp;rft.aulast=Baumgartner&amp;amp;rft.au=Peter%20Baumgartner&amp;amp;rft.date=&amp;amp;rft.language=en&#39;&gt;&lt;/span&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Xaringan presentations with blogdown</title>
      <link>https://notes.peter-baumgartner.net/2018/07/21/presentations-with-xaringan/</link>
      <pubDate>Sat, 21 Jul 2018 00:00:00 +0000</pubDate>
      <guid>https://notes.peter-baumgartner.net/2018/07/21/presentations-with-xaringan/</guid>
      <description>
&lt;script src=&#34;https://notes.peter-baumgartner.net/2018/07/21/presentations-with-xaringan/index_files/header-attrs/header-attrs.js&#34;&gt;&lt;/script&gt;


&lt;div id=&#34;how-to-integrate-xaringan-in-blogdown&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;How to integrate Xaringan in blogdown?&lt;/h1&gt;
&lt;p&gt;I am following in this short post the detailed description by &lt;a href=&#34;https://timmastny.rbind.io/&#34;&gt;Tim Mastny&lt;/a&gt; in his blog entry &lt;a href=&#34;https://timmastny.rbind.io/blog/embed-slides-knitr-blogdown/&#34;&gt;Embed Slides in Your Blog&lt;/a&gt;. Please read his article — especially the second half of it, where he is explaining the &lt;a href=&#34;https://timmastny.rbind.io/blog/embed-slides-knitr-blogdown/#upload-your-slideshow-to-your-website&#34;&gt;installation procedure&lt;/a&gt;.&lt;/p&gt;
&lt;div id=&#34;refer-to-an-external-slideshow&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Refer to an external slideshow&lt;/h2&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;knitr::include_url(&amp;#39;https://timmastny.rbind.io/slides/first_presentation&amp;#39;)&lt;/code&gt;&lt;/pre&gt;
&lt;iframe src=&#34;https://timmastny.rbind.io/slides/first_presentation&#34; width=&#34;672&#34; height=&#34;400px&#34; data-external=&#34;1&#34;&gt;
&lt;/iframe&gt;
&lt;/div&gt;
&lt;div id=&#34;refer-to-an-internal-slideshow&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Refer to an internal slideshow&lt;/h2&gt;
&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;knitr::include_url(&amp;#39;/slide/xaringan-demo.html&amp;#39;, height = &amp;quot;505px&amp;quot;)&lt;/code&gt;&lt;/pre&gt;
&lt;iframe src=&#34;https://notes.peter-baumgartner.net/slide/xaringan-demo.html&#34; width=&#34;672&#34; height=&#34;505px&#34; data-external=&#34;1&#34;&gt;
&lt;/iframe&gt;
&lt;/div&gt;
&lt;div id=&#34;summary&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Summary&lt;/h2&gt;
&lt;p&gt;Both examples above are the same as in Tim’s article.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Two observations:&lt;/strong&gt;&lt;/p&gt;
&lt;ol style=&#34;list-style-type: decimal&#34;&gt;
&lt;li&gt;There is no need to load the Xaringan package with &lt;code&gt;library(xaringan)&lt;/code&gt;. At the moment, I do not understand why this is not necessary.&lt;/li&gt;
&lt;li&gt;In the second example, the gray left and right margin have disappeared. The parameter &lt;code&gt;height = &#34;505px&#34;&lt;/code&gt; does this. To tweak this, I had to experiment with the optimal pixel value. (Maybe there is a better way to tweak this parameter with the valid value, e.g., taking the value from the CSS.)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The height parameter solves one of the problems mentioned by Tim:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I’m also investigating to see if I can trim the iframe, so I only see the slides and not the gray bars on the side.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&#34;how-to-present-slides-in-full-screen-view&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;How to present slides in full-screen view?&lt;/h1&gt;
&lt;p&gt;Here I wanted to address his second issue:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I’d like to be able to use a relative reference to the slideshow’s HTML file in the static/ directory, but I think &lt;code&gt;knitr::include_url()&lt;/code&gt; requires a live URL. I’ll have to do more research.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;div id=&#34;my-first-try-using-markdown-image-links&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;My first try: Using Markdown image links&lt;/h2&gt;
&lt;p&gt;My first try was: &lt;code&gt;![](/slide/xaringan-demo.html/#5)&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;embed src=&#34;https://notes.peter-baumgartner.net/slide/xaringan-demo.html#5&#34; /&gt;&lt;/p&gt;
&lt;p&gt;It generates a kind of thumbnail. Maybe this is theme dependent. I once tried it out in another theme and got other sizes, e.g., over the whole width of the text column. Presumably, this has to be done in one of the CSS files of the corresponding template.&lt;/p&gt;
&lt;p&gt;A kind of a thumbnail was not the result I was looking for, but it could become handy anyway. For instance, as a reference in an article. With the slide number behind the URL, one can reference easy every slide frame directly.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;my-second-try-using-markdown-with-absolute-links&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;My second try: Using Markdown with absolute links&lt;/h2&gt;
&lt;p&gt;The second try is a &lt;a href=&#34;https://portfolio.peter-baumgartner.net/slide/xaringan-demo#1&#34;&gt;link in standard Markdown&lt;/a&gt; to the file. It opens up the full-screen presentation. The code:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;The second try is a [link in standard markdown](https://portfolio.peter-baumgartner.net/slide/xaringan-demo#1) to the file.&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;This is not ideal one always needs an internet connection for the presentation.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;my-third-try-using-markdown-with-relative-links&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;My third try: Using Markdown with relative links&lt;/h2&gt;
&lt;p&gt;The third try is a &lt;a href=&#34;https://notes.peter-baumgartner.net/slide/xaringan-demo.html&#34;&gt;relative link in Markdown&lt;/a&gt; to the file. It opens up the full-screen presentation. The code:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;The third try is a  [relative link in Markdown](/slide/xaringan-demo.html) to the file.&lt;/code&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;summary-1&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Summary&lt;/h2&gt;
&lt;p&gt;This is the solution Tim was looking for. I tried several approaches in vain. Then I remembered that there is a demo &lt;a href=&#34;https://github.com/yihui/blogdown-static&#34;&gt;blogdown-static website&lt;/a&gt; by Yihui Xie. There I found the solution!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&#34;summary-and-conclusion&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Summary and conclusion&lt;/h1&gt;
&lt;p&gt;This third approach solves the second question mentioned by Tim. And this is an excellent solution: With a simple relative link in Markdown can everyone present (Xaringan) slideshows without an internet connection in full-screen view.&lt;/p&gt;
&lt;p&gt;Sure there would have always been the possibility to go via the operating system to the file on the hard disk directly. But this is not very elegant and would complicate to present an integrated presentation via browser with other (multimedia) elements. One reason out of 11 &lt;a href=&#34;https://yihui.name/en/2017/08/why-xaringan-remark-js/&#34;&gt;why Xihui Yui hotly favors remark.js&lt;/a&gt; is the feature that you can press the back button in the browser, and you will go back to the page from which you visited the slides, instead of reading the slides in the reverse order again.&lt;/p&gt;
&lt;p&gt;The next thing on my agenda is to learn how to apply Xaringan for everyday use. I have to read and try out:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;the example slides (&lt;a href=&#34;https://notes.peter-baumgartner.net/slide/xaringan-demo.html&#34;&gt;Xaringan&lt;/a&gt; and &lt;a href=&#34;https://remarkjs.com/#1&#34;&gt;remark&lt;/a&gt;),&lt;/li&gt;
&lt;li&gt;the &lt;a href=&#34;https://github.com/gnab/remark&#34;&gt;readme file&lt;/a&gt; at the remark GitHub site and&lt;/li&gt;
&lt;li&gt;the documentation in the &lt;a href=&#34;https://github.com/gnab/remark/wiki&#34;&gt;remark wiki&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Then I will transfer — as a first real live application — my slideshows written with &lt;a href=&#34;https://revealjs.com/&#34;&gt;reveal.js&lt;/a&gt; stored at my abandoned site at &lt;a href=&#34;https://notes.peter-baumgartner.net/slide/&#34; class=&#34;uri&#34;&gt;https://notes.peter-baumgartner.net/slide/&lt;/a&gt; to this new site here.&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;To inspect the full code of this post &lt;a href=&#34;https://github.com/petzi53/weblog-portfolio/blob/master/content/post/2018-07-18-presentations-with-xaringan.Rmd&#34;&gt;follow this link to my GitHub repo&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;span class=&#34;Z3988&#34; title=&#34;url_ver=Z39.88-2004&amp;amp;ctx_ver=Z39.88-2004&amp;amp;rfr_id=info%3Asid%2Fzotero.org%3A2&amp;amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;amp;rft.type=blogPost&amp;amp;rft.title=Xaringan%20presentations%20with%20blogdown%20::%20Open%20Science%20Education&amp;amp;rft.source=Xaringan%20presentations%20with%20blogdown&amp;amp;rft.rights=CC%20BY-SA%204.0&amp;amp;rft.description=This%20post%20demonstrates%20how%20to%20present%20slideshows%20with%20the%20Xaringan%20package.%20I%20explain%20how%20to%20integrate%20slideshows%20with%20Xaringan%20into%20blogdown%20via%20internal%20and%20external%20links.&amp;amp;rft.identifier=https%3A%2F%2Fnotes.peter-baumgartner.net%2F2018%2F07%2F21%2Fpresentations-with-xaringan&amp;amp;rft.aufirst=Peter&amp;amp;rft.aulast=Baumgartner&amp;amp;rft.au=Peter%20Baumgartner&amp;amp;rft.date=&amp;amp;rft.language=en&#34;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Using themes with blogdown: Lesson learned</title>
      <link>https://notes.peter-baumgartner.net/2018/07/19/blogdown-using-themes/</link>
      <pubDate>Thu, 19 Jul 2018 00:00:00 +0000</pubDate>
      <guid>https://notes.peter-baumgartner.net/2018/07/19/blogdown-using-themes/</guid>
      <description>


&lt;h2 id=&#34;report-from-an-odyssean-journey&#34;&gt;Report from an Odyssean Journey&lt;a href=&#34;#report-from-an-odyssean-journey&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;



&lt;h3 id=&#34;after-a-long-interruption-&#34;&gt;After a long interruption &amp;hellip;&lt;a href=&#34;#after-a-long-interruption-&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;After almost one year of interruption, I started re-using &lt;a href=&#34;https://bookdown.org/yihui/blogdown/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;blogdown&lt;/a&gt; again. But instead of writing new content, I had to struggle once again using the sophisticated machinery of &lt;a href=&#34;https://gohugo.io/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hugo&lt;/a&gt; and my &lt;a href=&#34;https://sourcethemes.com/academic/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;academic-theme&lt;/a&gt;. With painful experiences, I learned that one has to be cautious with updates to prevent breaking changes. In this post, I will report on my Odyssean experience and &amp;mdash; more important &amp;mdash; I will suggest guidelines on how to start, explore, and use themes in blogdown.&lt;/p&gt;
&lt;p&gt;Finally &amp;mdash; after almost one year of interruption &amp;mdash; I could reorganize my working responsibilities to spend more time working with &lt;code&gt;blogdown&lt;/code&gt; and &lt;code&gt;Hugo&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;But (re-)starting blogging using these tools was not easy after such a long period. I did not only forget many procedures but also ran into compatibility problems with the necessary updates. It turned out for me that the &lt;a href=&#34;https://bookdown.org/yihui/rmarkdown/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;R Markdown&lt;/a&gt; ecosphere produces not only valuable and powerful tools but is a continuously changing complex still stricken with some fragilities.&lt;/p&gt;
&lt;p&gt;After reporting on these difficulties, I will summarize the lessons I learned.&lt;/p&gt;



&lt;h3 id=&#34;i-had-problems-with-my-old-theme&#34;&gt;I had problems with my old theme&lt;a href=&#34;#i-had-problems-with-my-old-theme&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;Last year I was intrigued by the potent &lt;a href=&#34;https://themes.gohugo.io/docdock/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;docdock theme&lt;/a&gt;. It has many dynamic features (aka &lt;code&gt;shortcodes&lt;/code&gt;) and is uniquely good suited for complex structured information. I have learned in my posting career with &lt;a href=&#34;https://wordpress.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;WordPress&lt;/a&gt; on &lt;a href=&#34;http://peter.baumgartner.name&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Gedankensplitter&lt;/a&gt; that over time, new subjects emerge and require a change of the content structure. I was especially delighted that &lt;code&gt;docdock&lt;/code&gt; could produce dynamic HTML slides with the &lt;a href=&#34;https://revealjs.com/#/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;reveal.js&lt;/a&gt; framework, which I planned to use for &lt;a href=&#34;https://notes.peter-baumgartner.net/slide/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;tutorials&lt;/a&gt; and teaching.&lt;/p&gt;
&lt;p&gt;After updating my software machinery (R, R packages, Hugo), I also installed a new release of the &lt;code&gt;docdock&lt;/code&gt; theme. And here the odyssey started! I got many error messages which I could not solve. One problem was that I tweaked the theme (sacrificing several days of my summer holiday last year) without the necessary profound knowledge of the way &lt;code&gt;Hugo&lt;/code&gt; works. Another problem was that after not using blogdown such a long time, I had forgotten many procedures of the interplay between &lt;code&gt;blogdown&lt;/code&gt; and &lt;code&gt;Hugo&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;After several days of work, I did not manage to get a functional website. Worse! Meanwhile, I had destroyed my old (functioning) website as well. 😰 This disaster was for me an involuntary learning occasion to dive into &lt;a href=&#34;https://git-scm.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Git&lt;/a&gt; and &lt;a href=&#34;https://github.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;GitHub&lt;/a&gt; to save my work and restore my repo. I had not worked on a sub-branch and had carelessly committed changes that destroyed my web presence.&lt;/p&gt;



&lt;h3 id=&#34;docdock-theme-still-maintained&#34;&gt;DocDock theme still maintained?&lt;a href=&#34;#docdock-theme-still-maintained&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;To avoid similar issues, I started a clean installation of &lt;code&gt;blogdown&lt;/code&gt; with the &lt;code&gt;docdock&lt;/code&gt; theme. This time I did not get error messages, but experienced another surprise! The theme style I preferred had other (new) problems: The display of code snippets was not correct anymore and destroyed the page layout. I reported this issue to the theme author. Only now I noticed that the author does not respond to questions. On the issue page of the &lt;code&gt;docdock&lt;/code&gt; repo, I found the following message from another user:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Is this theme still maintained? Issues and PR&amp;rsquo;s seem to indicate not. I&amp;rsquo;m looking to add a documentation theme, but I&amp;rsquo;m not interested in adding one that&amp;rsquo;s been abandoned. (&lt;a href=&#34;https://github.com/vjeantet/hugo-theme-docdock/issues/151&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Issue 151&lt;/a&gt;)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This question is now unanswered for more than 20 days.😡 I do not blame the theme author. People have to work for a living; they donate their work and experiences to us whenever it is possible. But how could I be so naive only to judge my theme selection by the functionality of the theme? Not taking into account&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;the sustainability of the theme, e.g., its complexity related with its life cycle (updates, bugs),&lt;/li&gt;
&lt;li&gt;the responsiveness of the author,&lt;/li&gt;
&lt;li&gt;the community of people using this theme and helping each other!&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;At that moment, I abandoned the &lt;code&gt;docdock&lt;/code&gt; theme heavy-heatedly. I had put so much work into its adaption! And I like its functionality and design! Yes, I could still use my working version, but then I will lose future &lt;code&gt;Hugo&lt;/code&gt; features. I didn&amp;rsquo;t trust this theme anymore.&lt;/p&gt;



&lt;h2 id=&#34;problems-finding-another-suitable-theme&#34;&gt;Problems finding another suitable theme&lt;a href=&#34;#problems-finding-another-suitable-theme&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;



&lt;h3 id=&#34;from-docdock-to-ghostwriter&#34;&gt;From docdock to ghostwriter&lt;a href=&#34;#from-docdock-to-ghostwriter&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;Now I decided to choose a more simple theme and started with the &lt;a href=&#34;https://bookdown.org/yihui/blogdown/other-themes.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;recommended theme list in the blogdown book&lt;/a&gt;. The only theme I liked from its design was &lt;a href=&#34;https://themes.gohugo.io/ghostwriter/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;ghostwriter&lt;/a&gt;. I installed it without problems and began using it. My first project was to learn the &lt;a href=&#34;https://slides.yihui.name/xaringan/#1&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Xaringan package&lt;/a&gt; in combination with &lt;code&gt;blogdown&lt;/code&gt;. I stumbled about it reading the new &lt;a href=&#34;https://bookdown.org/yihui/rmarkdown/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;R Markdown book&lt;/a&gt;. It could be a way to replace my beloved html5 slide functionality from the &lt;code&gt;docdock&lt;/code&gt; theme. Instead of producing slides using &lt;a href=&#34;https://revealjs.com/#/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;reveal.js&lt;/a&gt;, I had now to learn with &lt;a href=&#34;https://remarkjs.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;remark.js&lt;/a&gt; another tool. But Yihui Xie &amp;mdash; the author behind all this fantastic stuff in the &lt;code&gt;R Markdown&lt;/code&gt; ecosphere like &lt;a href=&#34;https://yihui.name/knitr/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;knitr&lt;/a&gt;, &lt;code&gt;blogdown&lt;/code&gt;, &lt;code&gt;bookdown&lt;/code&gt;, &lt;code&gt;xaringan&lt;/code&gt;, etc. &amp;mdash; explained convincingly why &lt;a href=&#34;https://yihui.name/en/2017/08/why-xaringan-remark-js/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;remark is preferable to other slide frameworks&lt;/a&gt; (e.g., &lt;a href=&#34;https://www.w3.org/Talks/Tools/Slidy2/#%281%29,%20%5Bioslides%5D%28https://bookdown.org/yihui/rmarkdown/ioslides-presentation.html%29%20or%20%5Bbeamer%5D%28https://www.overleaf.com/learn/latex/Beamer%29&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;slidy&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To shorten a long story: After several hours trying to bring &lt;code&gt;Xaringan&lt;/code&gt; to work &amp;mdash; I followed the simple synopsis by &lt;a href=&#34;https://timmastny.rbind.io/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Tim Mastny&lt;/a&gt; in his blog entry &lt;a href=&#34;https://timmastny.rbind.io/blog/embed-slides-knitr-blogdown/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Embed Slides in Your Blog&lt;/a&gt; &amp;mdash; it turned out that in the &lt;code&gt;ghostwriter&lt;/code&gt; theme files in the static folder are not rendered and uploaded. This insight came as a big surprise for me! I thought that it is a standard procedure that all &lt;a href=&#34;https://bookdown.org/yihui/blogdown/static-files.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;files under the &lt;code&gt;static/&lt;/code&gt; directory&lt;/a&gt; are copied to &lt;code&gt;public/&lt;/code&gt; when Hugo renders a website. Only when I found an entry by &lt;a href=&#34;https://stackoverflow.com/questions/41176194/hugo-not-reading-rmd-files-after-using-blogdown&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Amber Thomas on Stack Overflow&lt;/a&gt; &amp;mdash; one of the co-authors of the blogdown book &amp;mdash; I learned that this could be possible.&lt;/p&gt;
&lt;p&gt;The problem was &amp;mdash; at least for me &amp;mdash; a tricky one. The website worked locally but not when I deployed it with &lt;a href=&#34;https://www.netlify.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Netlify&lt;/a&gt;. Even when I noticed that there were no static files uploaded in my repository, I still thought it was me, who did something wrong. As a novice user, I always believe that the problem is on my side. But after many fruitless trials, I came up with the idea to try it out with another theme. So I installed the &lt;a href=&#34;https://themes.gohugo.io/hugo-xmin/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Xmin theme&lt;/a&gt; and learned that everything I did was done correctly.&lt;/p&gt;



&lt;h3 id=&#34;from-ghostwriter-to-xmin-and-academic&#34;&gt;From ghostwriter to Xmin and Academic&lt;a href=&#34;#from-ghostwriter-to-xmin-and-academic&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;I abandoned the &lt;code&gt;ghostwriter&lt;/code&gt; theme much more relaxed than before the &lt;code&gt;docdock&lt;/code&gt; theme. I was not yet emotionally linked to the theme and had (thankfully) not started with adaption work. I learned from this experience that it is an excellent strategy to test things out with the two minimal themes &lt;code&gt;Xmin&lt;/code&gt; or &lt;a href=&#34;https://themes.gohugo.io/theme/hugo-lithium-theme/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Lithium&lt;/a&gt;, which provides a stable reference point.&lt;/p&gt;
&lt;p&gt;But how to proceed now? Should I stick with &lt;code&gt;Xmin&lt;/code&gt; to be on the secure side? But I do not like this theme from its appearance. Also, my CSS knowledge is feeble, and I do not want to spend much learning and working time to adapt its design.&lt;/p&gt;
&lt;p&gt;So my next choice was the &lt;a href=&#34;https://themes.gohugo.io/academic/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;academic theme&lt;/a&gt;. Last year I had already experimented with it, and it is one of the (more complex) recommendations in the &lt;code&gt;blogdown&lt;/code&gt; book. It is a very elaborated theme with fantastic features designed for academic usage. But precisely or targeting the academic community, was the reason why I decided last year against this theme.&lt;/p&gt;
&lt;p&gt;I am looking forward to my retirement, and I am fed up from all the administrative university business: The thought of (re)presenting all details of my scientific work and especially to transfer more than 120 publications from my &lt;code&gt;WordPress&lt;/code&gt; blog to the blogdown academic framework made me furious. All I was looking for was a decent blog framework open for all the helpful tools from the &lt;a href=&#34;https://rmarkdown.rstudio.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;R Markdown&lt;/a&gt; ecosphere.&lt;/p&gt;
&lt;p&gt;But incidentally, just at the same time, I noticed problems with some of the &lt;code&gt;WordPress&lt;/code&gt; plugins dynamically serving my list of publications. Besides, I understood that I am not forced to use all sections of the academic framework: I could focus on the posts section &amp;mdash; and maybe add later on some other parts.&lt;/p&gt;
&lt;p&gt;So I returned to my abandoned experiments with the &lt;code&gt;academic-theme&lt;/code&gt; as I already did some configuration and had even written some content. First of all, I updated it to the new version and &amp;hellip; &amp;mdash; Yes, again I ran into troubles! After some trials, I noticed a wired problem: It took me two days to narrow down the error. It turned out that with one of the last update, the &lt;code&gt;academic theme&lt;/code&gt; was not compatible with blogdown anymore! I reported this issue to the &lt;a href=&#34;https://community.rstudio.com/t/serve-site-creates-index-of-site-rather-than-site-preview-blogdown/11120&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;RStudio community&lt;/a&gt;, to &lt;a href=&#34;https://github.com/gcushen/hugo-academic/issues/594&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;George Cushen&lt;/a&gt; and &lt;a href=&#34;https://github.com/rstudio/blogdown/issues/315&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Yihui Xie&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Can you imagine my emotional state? I changed between desperation and depression. All in all, it took me already two weeks with the result that I had accomplished nothing!&lt;/p&gt;
&lt;div class=&#34;tenor-gif-embed&#34; data-postid=&#34;6130598&#34; data-share-method=&#34;host&#34; data-width=&#34;100%&#34; data-aspect-ratio=&#34;1.345945945945946&#34;&gt;&lt;a href=&#34;https://tenor.com/view/crazy-hair-gif-6130598&#34;&gt;Crazy Hair GIF&lt;/a&gt; from &lt;a href=&#34;https://tenor.com/search/crazyhair-gifs&#34;&gt;Crazyhair GIFs&lt;/a&gt;&lt;/div&gt;
&lt;figcaption&gt;&lt;strong&gt;Figure 1:&lt;/strong&gt; Crazy Hair&lt;/figcaption&gt;
&lt;script type=&#34;text/javascript&#34; async src=&#34;https://tenor.com/embed.js&#34;&gt;&lt;/script&gt;
&lt;p&gt;After taking a short nap to calm down, I reconsidered my situation: Yes, it took me much time, but at the same time, I learned a lot. I am not referring primarily to my speed generating a new &lt;code&gt;blogdown&lt;/code&gt; website from scratch with a &lt;code&gt;GitHub&lt;/code&gt; repo and deployed by &lt;code&gt;Netlify&lt;/code&gt; (It takes my now only 60 seconds 🚀). But hopefully, I will not need this skill so frequently in the future. 😊 In addition to being more comfortable with &lt;code&gt;Git&lt;/code&gt; and &lt;code&gt;Github&lt;/code&gt;, I had learned general strategies to avoid similar problems in the future!&lt;/p&gt;
&lt;p&gt;And there also came some encouraging signals from the community: Both &amp;mdash; Georg Cushen and Yihui Xie &amp;mdash; responded almost immediately to my posts. Even the problem was not solved at that time; I decided to stick with the &lt;code&gt;academic-theme&lt;/code&gt;. From some other interactions (issues and questions to the theme), I had built up trust to the theme author. George is committed to his theme and very busy to deliver the best product possible. So after a roll back to an older version, I began with this article. As it stands now, this was the right decision. George and Yihui solved the issue together within two days.&lt;/p&gt;



&lt;h2 id=&#34;lesson-learned-from-my-own-experience&#34;&gt;Lesson learned from my own experience&lt;a href=&#34;#lesson-learned-from-my-own-experience&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;The following list is an attempt to turn my Odyssean experience into constructive advises for other users. I am sure it is not complete and maybe in some points faulty. If you disagree or have other, better tips: please comment on this post!&lt;/p&gt;
&lt;p&gt;I am not going into details, and I take for granted some basic knowledge/experience with &lt;code&gt;RStudio / blogdown / Git / Github and Netlify&lt;/code&gt;. To have read the &lt;a href=&#34;https://bookdown.org/yihui/blogdown/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;blogdown book&lt;/a&gt; is another requirement.&lt;/p&gt;



&lt;h3 id=&#34;how-to-choose-a-theme&#34;&gt;How to choose a theme?&lt;a href=&#34;#how-to-choose-a-theme&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Most important: In choosing a theme do not &lt;b&gt;only&lt;/b&gt; focus on functionality and pleasing design.
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Additionally:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 01:&lt;/strong&gt; Look if the theme author is currently active. If there are no updates for several months or later, reconsider to choose this theme.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 02:&lt;/strong&gt; Look at the repo to decide if the author is responsive to reported issues or pull requests.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 03:&lt;/strong&gt; Look if the author provides releases from time to time. Unexperienced users like me are still not comfortable with &lt;code&gt;Git/Github&lt;/code&gt;. Instead of forking and synchronizing repositories, I prefer to install updates via ZIP files.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 04:&lt;/strong&gt; Look into the documentation to see if the explanations are comprehensive and up-to-date&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 05:&lt;/strong&gt; Investigate the popularity of the theme. This check is not easily done but improves the changes for support through other users. Look not only at the number of stars and forks in the repo because that could be misleading for your purpose and community.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 06:&lt;/strong&gt; Recherche also if people often write in blogs and forums about the theme and what kind of community is using this theme.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;hellip; keep in mind that a more complicated and fancier theme may require you to learn more about all the underlying technologies like the Hugo templating language, HTML, CSS, and JavaScript. (&lt;a href=&#34;https://bookdown.org/yihui/blogdown/a-quick-example.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Blogdown Book&lt;/a&gt;)&lt;/p&gt;
&lt;/blockquote&gt;



&lt;h3 id=&#34;how-to-start-working-with-a-theme&#34;&gt;How to start working with a theme?&lt;a href=&#34;#how-to-start-working-with-a-theme&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Most important: Do not &lt;b&gt;begin&lt;/b&gt; with adapting the design of the theme.
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Instead:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 07:&lt;/strong&gt; Start a test site with a test repository and test deployment with &lt;code&gt;Netlify&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 08:&lt;/strong&gt; Copy the content of &lt;code&gt;themes/&amp;lt;your-theme-name&amp;gt;/exampleSite&lt;/code&gt; to your project directory. Not the folder itself, but just the content inside (e.g., the folders &lt;code&gt;static&lt;/code&gt;, &lt;code&gt;content&lt;/code&gt; and the &lt;code&gt;config.toml&lt;/code&gt;). Overwrite these files in your project directory &amp;mdash; it is only a site for testing.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 09:&lt;/strong&gt; Read accompanying instructions and go line by line through the &lt;code&gt;config.toml&lt;/code&gt;. Adapt this configuration file to your needs. Make notes not only how but also why you did which setting. Documenting these changes could be helpful later when you have already forgotten you initially considerations and the procedures to follow.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 10:&lt;/strong&gt; Now start writing text in your test site. I recommend working on real posts you want to publish. Choose predominantly use cases which will be typical for your everyday work. This advice seems strange as you are working still on a test site. It is important to test the theme under real working conditions. Besides, writing real posts are not lost work: You are producing standard text files which you can transfer to other sites or themes if the need arises.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 11:&lt;/strong&gt; Establish a common workflow and get used to it.&lt;/p&gt;
&lt;details class=&#34;spoiler &#34;  id=&#34;spoiler-2&#34;&gt;
  &lt;summary&gt;I use the following workflow&lt;/summary&gt;
  &lt;p&gt;&lt;ul&gt;
&lt;li&gt;I start my daily routine with &lt;code&gt;blogdown::serve_site()&lt;/code&gt; using the &lt;code&gt;RStudio&lt;/code&gt; addins plugin (CTRL-S on my machine) provided by the &lt;code&gt;blogdown&lt;/code&gt; package.&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Update 2021-05-19: Due to significant changes starting with &lt;a href=&#34;https://blog.rstudio.com/2021/01/18/blogdown-v1.0/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;blogdown version 1.0&lt;/a&gt; my workflow has changed slightly: It is not necessary anymore to use &lt;code&gt;Build -&amp;gt; More -&amp;gt; Clean All&lt;/code&gt; because you can render and publish just one page.
  &lt;/div&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Then I start writing. After saving the file (which automatically updates the local website), I look over the result locally in my browser. (I prefer my &lt;code&gt;Google Chrome&lt;/code&gt; browser for detailed inspection and use the &lt;code&gt;RStudio&lt;/code&gt; viewer pane only for a general overview or to look up a specific change.)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;From time to time &amp;mdash; or whenever something seems wrong or not updated &amp;mdash; I use &lt;code&gt;Build -&amp;gt; More -&amp;gt; Clean All&lt;/code&gt; followed by restarting &lt;code&gt;R&lt;/code&gt;. And again &lt;code&gt;blogdown::serve_site()&lt;/code&gt; to update locally.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;After I have finished my work, I commit and pull the changes to my repo, and after some seconds, when &lt;code&gt;Netlify&lt;/code&gt; has deployed the site, I inspect the live result.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/p&gt;
&lt;/details&gt;
&lt;p&gt;&lt;strong&gt;Advice 12:&lt;/strong&gt; After some time with your daily working routine, you get accustomed to all the other features of the theme. Even if there are functions you will not need to use: It is nice to have an overview of what could be possible and what not. This knowledge is also important to understand future updates of the theme.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 13:&lt;/strong&gt; Not until you feel comfortable with the functionality of the theme and your working habit, you should start to adopt the theme. Here it is important to do all your work on your side of the project; meaning &lt;strong&gt;not&lt;/strong&gt; under the themes directory. Copy those files you are going to change or add under the same structure in your home folder of the &lt;code&gt;RStudio&lt;/code&gt; project. Changes on these files will overwrite the virgin theme. One the one hand, your changes are all collected in one place and separated from the original theme. On the other hand, new versions of the theme will not override your changes.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 14:&lt;/strong&gt; Only when you have finally arrived at a status where you work could be publicly launched, change to the real website. Prepare a fresh installation with your theme, with a new repo and a new deployment by &lt;code&gt;Netlify&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 15:&lt;/strong&gt; Before you copy your work into a new &lt;code&gt;RStudio&lt;/code&gt; project, create a new &lt;code&gt;Git&lt;/code&gt; branch and check it out (= change to it). If anything goes irreparably wrong (and believe me: eventually in the long term this will be the case!) you have not destroyed your current web presence. After my odyssey, I worked with two branches besides master: &lt;code&gt;config&lt;/code&gt; for bigger changes (new version of the theme, changing the configuration or the structure of my site) and &lt;code&gt;blog&lt;/code&gt; for my daily (writing) work. If you decide to merge your branch with &lt;code&gt;master&lt;/code&gt; you will have an additional security level: &lt;code&gt;Netlify&lt;/code&gt; will check if anything went smoothly &lt;strong&gt;before&lt;/strong&gt; your branch is merged with master. If something went wrong, you would abstain from merging your branch.&lt;/p&gt;



&lt;h3 id=&#34;problem-solving-strategies&#34;&gt;Problem-solving strategies&lt;a href=&#34;#problem-solving-strategies&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Most important: Keep calm &lt;b&gt;and&lt;/b&gt; RTFM!
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Advice 16:&lt;/strong&gt; Use &lt;code&gt;Google&lt;/code&gt; (or other search engines) to see if other users experienced the same problem. Start your search inquiry with &lt;code&gt;blogdown &amp;lt;name of your theme&amp;gt; &amp;lt;error message&amp;gt;&lt;/code&gt; or different appropriate combination of content. Most of the time, you will get results linked to questions in &lt;a href=&#34;https://stackoverflow.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Stack Overflow&lt;/a&gt; or blog posts where other users reported about the same or similar problems.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 17:&lt;/strong&gt; If you cannot find appropriate problem/solution pairs, I would now &amp;mdash; after my Odyssean experience &amp;mdash; not yet starting to bother people at discussion fora. Start instead of a new reference (test) site with the &lt;code&gt;XMin&lt;/code&gt; theme and try to reproduce the problem. If it works there, then the problem has to do with your theme or the changes you have made.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Advice 18:&lt;/strong&gt; If the problem persists in your theme, then there are still two possibilities: Either you did something wrong, or it really is a bug in one of the pieces in the R Markdown machinery. Produce a &lt;a href=&#34;https://stackoverflow.com/help/minimal-reproducible-example&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;REProducible EXample&lt;/a&gt; ( aka &lt;code&gt;Reprex&lt;/code&gt;). Read &lt;a href=&#34;https://cran.r-project.org/web/packages/reprex/vignettes/reprex-dos-and-donts.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Reprex do&amp;rsquo;s and don&amp;rsquo;ts&lt;/a&gt; and &lt;a href=&#34;https://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;report the problem at Stack Overflow&lt;/a&gt; or to the RStudio Community[(&lt;a href=&#34;https://community.rstudio.com/&#34;&gt;https://community.rstudio.com/&lt;/a&gt;). Your replication on the otherwise empty reference site will help you to focus on the essential question and will also provide an excellent reproducible example.&lt;/p&gt;
&lt;div class=&#34;tenor-gif-embed&#34; data-postid=&#34;12671404&#34; data-share-method=&#34;host&#34; data-width=&#34;100%&#34; data-aspect-ratio=&#34;1.75&#34;&gt;&lt;a href=&#34;https://tenor.com/view/tom-cruise-help-me-you-jerry-gif-12671404&#34;&gt;Tom Cruise Help GIF&lt;/a&gt; from &lt;a href=&#34;https://tenor.com/search/tomcruise-gifs&#34;&gt;Tomcruise GIFs&lt;/a&gt;&lt;/div&gt;
&lt;figcaption&gt;&lt;strong&gt;Figure 1:&lt;/strong&gt; Tom Cruise: Help me, help you!&lt;/figcaption&gt;
&lt;script type=&#34;text/javascript&#34; async src=&#34;https://tenor.com/embed.js&#34;&gt;&lt;/script&gt;



&lt;h2 id=&#34;several-updates&#34;&gt;Several updates&lt;a href=&#34;#several-updates&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;This post has enjoyed several updates already!&lt;/p&gt;



&lt;h3 id=&#34;back-to-docdock&#34;&gt;Back to docdock&lt;a href=&#34;#back-to-docdock&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    &lt;p&gt;Update 2019-06-03: As you can see from the footer, this website is using the &lt;code&gt;docdock&lt;/code&gt;- and not the &lt;code&gt;academic&lt;/code&gt; theme I wrote above. I started with the &lt;code&gt;docdock&lt;/code&gt; and abandoned it for reasons I mentioned above. After another year of creative abstinence of blog writing, in May 2019, I fired up the &lt;code&gt;blogdown&lt;/code&gt; machinery again. But because of a combination of many updates of &lt;code&gt;Hugo&lt;/code&gt; (from 0.27 to 0.55.6!) and the &lt;code&gt;academic&lt;/code&gt; theme (from 2.4 to 4.3), I not only ran into a bunch of error messages, but I have also lost track of different breaking changes and couldn&amp;rsquo;t recover. &amp;mdash;😳&lt;/p&gt;
&lt;p&gt;So I changed to &lt;code&gt;docdock&lt;/code&gt; back, but this time with somewhat more knowledge. Hopefully, my activities were not a circle but a helix movement where I managed some advances. Thinking positively, hopefully, I can stick with this theme in the future. I do not want writing another complaining article next year, addressing the same problems again.&lt;/p&gt;
  &lt;/div&gt;
&lt;/div&gt;



&lt;h3 id=&#34;not-docdock-but-pandoc-was-the-problem&#34;&gt;Not docdock but Pandoc was the problem&lt;a href=&#34;#not-docdock-but-pandoc-was-the-problem&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    &lt;p&gt;Update 2019-06-07: The reason for my problems mentioned above was an old version of &lt;a href=&#34;https://pandoc.org/&#34;&gt;pandoc&lt;/a&gt;. I had installed &amp;ldquo;pandoc-1.19.2-29-jan-2017&amp;rdquo;, but the latest release of the date of this writing is &amp;ldquo;pandoc-2.7.2-5-april-2019&amp;rdquo;. Now I could successfully update &lt;a href=&#34;https://gohugo.io/&#34;&gt;Hugo&lt;/a&gt; to &amp;ldquo;v0.55.6&amp;rdquo; By this occasion I also updated &lt;a href=&#34;https://jquery.com/&#34;&gt;jQuery&lt;/a&gt; v2.2.3 to v.3.4.1.&lt;/p&gt;
&lt;p&gt;Now there wouldn&amp;rsquo;t be any reason not to return to the &lt;code&gt;academic&lt;/code&gt; theme. But I had worked hard the last week and learned so much about my &lt;code&gt;docdock&lt;/code&gt; theme, that I am feeling now very comfortable and will stick with it.&lt;/p&gt;
  &lt;/div&gt;
&lt;/div&gt;



&lt;h3 id=&#34;voila-back-to-academic-theme-again&#34;&gt;Voila! Back to Academic theme again!&lt;a href=&#34;#voila-back-to-academic-theme-again&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    &lt;p&gt;Update 2021-05-19: As you can see from the footer, I am back at the Academic theme again!!! The desired stability of the theme development became an unsupportable disadvantage: I couldn&amp;rsquo;t use the new features of Hugo any more. With some breaking changes (Content organization via &lt;a href=&#34;https://gohugo.io/news/0.32-relnotes/&#34;&gt;Page Bundles&lt;/a&gt; and &lt;a href=&#34;https://gohugo.io/news/0.60.0-relnotes/&#34;&gt;Goldmark&lt;/a&gt; as the new default Hugo markdown library) I became with the docdock theme sidelined.&lt;/p&gt;
&lt;p&gt;Why Academic (now Wowchemy web page builder) and not a more simple theme?&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;After four years of learning and (sometimes bad) experiences, I am feeling more comfortable with the whole production chain and have more confidence to master the complex theme now.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Some changes in blogdown (several checking functions and the possibility to fix the Hugo version) addressed the problem of Hugo as a moving target where users had to follow every revision and update.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Both parts of the community (blogdown and Academic) have grown essentially, so help from other users is much more likely.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;span class=&#39;Z3988&#39; title=&#39;url_ver=Z39.88-2004&amp;amp;ctx_ver=Z39.88-2004&amp;amp;rfr_id=info%3Asid%2Fzotero.org%3A2&amp;amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;amp;rft.type=blogPost&amp;amp;rft.title=Using%20themes%20with%20blogdown:%20Lesson%20learned&amp;amp;rft.source=Thought%20splinters&amp;amp;rft.rights=CC%20BY-SA%204.0&amp;amp;rft.description=After%20almost%20one%20year%20of%20interruption,%20I%20started%20re-using%20blogdown%20again.%20%20But%20instead%20of%20writing%20new%20content,%20I%20had%20to%20struggle%20once%20again%20with%20using%20the%20sophisticated%20machinery%20of%20%20Hugo%20hidden%20in%20the%20functionality%20of%20its%20themes.%20%20In%20this%20post,%20I%20will%20report%20on%20my%20Odyssean%20experience%20and%20---%20more%20important%20---%20I%20will%20suggest%20guidelines%20on%20how%20to%20start,%20explore,%20and%20use%20themes%20in%20blogdown.&amp;amp;rft.identifier=https%3A%2F%2Fnotes.peter-baumgartner.net%2F2018%2F07%2F19%2Fblogdown-using-themes&amp;amp;rft.aufirst=Peter&amp;amp;rft.aulast=Baumgartner&amp;amp;rft.au=Peter%20Baumgartner&amp;amp;rft.date=2018-07-19&amp;amp;rft.language=en&#39;&gt;&lt;/span&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Install Blogdown (Part 1)</title>
      <link>https://notes.peter-baumgartner.net/slides/2017-09-19-blogdown-01/</link>
      <pubDate>Tue, 19 Sep 2017 00:00:00 +0000</pubDate>
      <guid>https://notes.peter-baumgartner.net/slides/2017-09-19-blogdown-01/</guid>
      <description>


&lt;h2 id=&#34;how-to-use-this-presentation&#34;&gt;How to use this presentation?&lt;a href=&#34;#how-to-use-this-presentation&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Use the controls on the right bottom of the screen.&lt;/li&gt;
&lt;li&gt;Watch out: sometimes there is not only left &amp;amp; right, but also top &amp;amp; down.&lt;/li&gt;
&lt;li&gt;Press &lt;code&gt;ALT&lt;/code&gt; key (&lt;code&gt;CTRL&lt;/code&gt; in Linux) and click on any element to zoom towards it. Click again to zoom back out.&lt;/li&gt;
&lt;li&gt;For an overview about the slide structure press &lt;code&gt;ESC&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;To end the presentation go back with the browser.&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;



&lt;h2 id=&#34;latex-installation-requirements&#34;&gt;LATEX Installation: Requirements&lt;a href=&#34;#latex-installation-requirements&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;At first you have to install&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://cran.r-project.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;R&lt;/a&gt; latest version and&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.rstudio.com/products/RStudio/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;RStudio&lt;/a&gt; (&lt;a href=&#34;https://www.rstudio.com/products/rstudio/download/preview/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Preview &amp;gt; v.1.1&lt;/a&gt;).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Then start RStudio: You will see the following window&amp;hellip;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;1-create-new-project&#34;&gt;1. Create new project&lt;a href=&#34;#1-create-new-project&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/create-new-project.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;2-choose-new-directory&#34;&gt;2. Choose new directory&lt;a href=&#34;#2-choose-new-directory&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/create-new-directory.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;3-select-website-using-blogdown&#34;&gt;3. Select website using blogdown&lt;a href=&#34;#3-select-website-using-blogdown&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/create-website-using-blogdown.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;4-choose-directory-name--location&#34;&gt;4. Choose directory name &amp;amp; location&lt;a href=&#34;#4-choose-directory-name--location&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/create-website-using-hugo-and-blogdown.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;
4a Pick your 


&lt;h2 id=&#34;4a-pick-your-preferred-themehttpsthemesgohugoio&#34;&gt;&lt;a href=&#34;https://themes.gohugo.io/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;preferred theme&lt;/a&gt;&lt;a href=&#34;#4a-pick-your-preferred-themehttpsthemesgohugoio&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/hugo-themes.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;4b-select-theme--get-url&#34;&gt;4b Select theme &amp;amp; get URL&lt;a href=&#34;#4b-select-theme--get-url&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/academic-theme.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;4c-finish-form-and-install&#34;&gt;4c Finish form and install&lt;a href=&#34;#4c-finish-form-and-install&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/create-website-using-hugo-and-blogdown.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;4d-click-create-project-button&#34;&gt;4d Click &amp;ldquo;Create Project&amp;rdquo; button&lt;a href=&#34;#4d-click-create-project-button&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;Click &amp;ldquo;Create Project&amp;rdquo; Button and wait some seconds. RStudio will install&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Hugo&lt;/li&gt;
&lt;li&gt;your selected theme and&lt;/li&gt;
&lt;li&gt;blogdown with all dependencies&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;



&lt;h2 id=&#34;5-installation-is-finished&#34;&gt;5 Installation is finished!&lt;a href=&#34;#5-installation-is-finished&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;&lt;img src=&#34;images/four-pane-view-after-installation.png&#34; style=&#34;width: 70%&#34; /&gt;&lt;/p&gt;
&lt;hr&gt;



&lt;h2 id=&#34;close-presentation&#34;&gt;Close presentation&lt;a href=&#34;#close-presentation&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;Press back button of your browser.&lt;/p&gt;
&lt;p&gt;(not back button of the slide!).&lt;/p&gt;
&lt;p&gt;&lt;span class=&#39;Z3988&#39; title=&#39;url_ver=Z39.88-2004&amp;amp;ctx_ver=Z39.88-2004&amp;amp;rfr_id=info%3Asid%2Fzotero.org%3A2&amp;amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;amp;rft.type=blogPost&amp;amp;rft.title=Install%20Blogdown%20(Part%201)%20::%20Open%20Science%20Education&amp;amp;rft.source=Install%20Blogdown%20(Part%201)&amp;amp;rft.rights=CC%20BY-SA%204.0&amp;amp;rft.description=How%20to%20install%20Hugo%20with%20a%20specified%20theme%20using%20R,%20RStudio%20and%20blogdown&amp;amp;rft.identifier=https%3A%2F%2Fnotes.peter-baumgartner.net%2Fslide%2Fblogdown-tutorial-01&amp;amp;rft.aufirst=Peter&amp;amp;rft.aulast=Baumgartner&amp;amp;rft.au=Peter%20Baumgartner&amp;amp;rft.date=&amp;amp;rft.language=en&#39;&gt;&lt;/span&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>How to install Disqus on Hugo?</title>
      <link>https://notes.peter-baumgartner.net/2017/09/10/how-to-install-disqus-on-hugo/</link>
      <pubDate>Sun, 10 Sep 2017 00:00:00 +0000</pubDate>
      <guid>https://notes.peter-baumgartner.net/2017/09/10/how-to-install-disqus-on-hugo/</guid>
      <description>


&lt;h2 id=&#34;1-sign-up&#34;&gt;1. Sign up&lt;a href=&#34;#1-sign-up&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;First of all you have to sign up for &lt;a href=&#34;https://disqus.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Disqus&lt;/a&gt;. 













&lt;figure  id=&#34;figure-create-an-account-on-disqus&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Create an account on Disqus.&#34; srcset=&#34;
               /2017/09/10/how-to-install-disqus-on-hugo/images/sign-up_hu0d34b0c388d8c46ac552674cbf861e9d_131606_b3e5fc93145ee05b23697b5cd78b0107.png 400w,
               /2017/09/10/how-to-install-disqus-on-hugo/images/sign-up_hu0d34b0c388d8c46ac552674cbf861e9d_131606_7a827da1f1b5b68436b5f28642d687c9.png 760w,
               /2017/09/10/how-to-install-disqus-on-hugo/images/sign-up_hu0d34b0c388d8c46ac552674cbf861e9d_131606_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/10/how-to-install-disqus-on-hugo/images/sign-up_hu0d34b0c388d8c46ac552674cbf861e9d_131606_b3e5fc93145ee05b23697b5cd78b0107.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption&gt;
      Create an account on Disqus.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h2 id=&#34;2-install-disqus&#34;&gt;2. Install Disqus&lt;a href=&#34;#2-install-disqus&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;You are offered two choices after the registration process. Select &amp;lsquo;I want to install Disqus on my site&amp;rsquo;. 













&lt;figure class=&#34;small&#34; id=&#34;figure-choose-install-disqus&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Choose &amp;#39;Install Disqus&amp;#39;&#34; srcset=&#34;
               /2017/09/10/how-to-install-disqus-on-hugo/images/two-choices_hu4e8c94df3133d988800ab5f72679f22f_25589_57682a79f5c85daeee602d5caa618923.png 400w,
               /2017/09/10/how-to-install-disqus-on-hugo/images/two-choices_hu4e8c94df3133d988800ab5f72679f22f_25589_67c10275a4a7dff8deac20460f231251.png 760w,
               /2017/09/10/how-to-install-disqus-on-hugo/images/two-choices_hu4e8c94df3133d988800ab5f72679f22f_25589_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/10/how-to-install-disqus-on-hugo/images/two-choices_hu4e8c94df3133d988800ab5f72679f22f_25589_57682a79f5c85daeee602d5caa618923.png&#34;
               width=&#34;550&#34;
               height=&#34;760&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption&gt;
      Choose &amp;lsquo;Install Disqus&amp;rsquo;
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h2 id=&#34;3-fill-in-the-form&#34;&gt;3. Fill in the form&lt;a href=&#34;#3-fill-in-the-form&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;Disqus needs some information for adding a forum to your website. I will add just two remarks as the form is mostly self-explaining. Firstly, the website name is a text snippet that will appear in the head of every forum section. It does not have to be related to you website name. Secondly, make a note of your Disqus short name as you are going to use it in step 5 and 6. 













&lt;figure  id=&#34;figure-configure-disqus-for-your-site&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Configure Disqus for your site&#34; srcset=&#34;
               /2017/09/10/how-to-install-disqus-on-hugo/images/fill-in-form_huf33795d62339beba695d12bbc0dcd34e_121292_7ad20fe7f523abab7bbc625f5747ae9e.png 400w,
               /2017/09/10/how-to-install-disqus-on-hugo/images/fill-in-form_huf33795d62339beba695d12bbc0dcd34e_121292_3854ef3d5fa324e0b47f26ca4899fefe.png 760w,
               /2017/09/10/how-to-install-disqus-on-hugo/images/fill-in-form_huf33795d62339beba695d12bbc0dcd34e_121292_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/10/how-to-install-disqus-on-hugo/images/fill-in-form_huf33795d62339beba695d12bbc0dcd34e_121292_7ad20fe7f523abab7bbc625f5747ae9e.png&#34;
               width=&#34;643&#34;
               height=&#34;760&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption&gt;
      Configure Disqus for your site
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h2 id=&#34;4-find-discussion-template&#34;&gt;4. Find discussion template&lt;a href=&#34;#4-find-discussion-template&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;With the next two steps we are going to fix the problem of a faulty Hugo template. Look for the file &amp;lsquo;single.html&amp;rsquo; and open it in the editor to inspect the content. &lt;code&gt;single.html&lt;/code&gt; should be under &lt;code&gt;/themes/&amp;lt;your-theme-nam&amp;gt;/layouts/_default&lt;/code&gt;. At the end of the file &amp;ndash; just before the footer &amp;ndash;, you should find the name of the partial template for your discussion forum (= &amp;lsquo;comments-html&amp;rsquo; in my case). 













&lt;figure  id=&#34;figure-configure-disqus-for-your-site&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Configure Disqus for your site.&#34; srcset=&#34;
               /2017/09/10/how-to-install-disqus-on-hugo/images/find-discussion-template_huf811ced19a8aeaf6f5982c30de7c7de3_143539_cf51875457aa0b1b797e9e1fb3160e1b.png 400w,
               /2017/09/10/how-to-install-disqus-on-hugo/images/find-discussion-template_huf811ced19a8aeaf6f5982c30de7c7de3_143539_f00111d287ec7e71f0462831b1e403cf.png 760w,
               /2017/09/10/how-to-install-disqus-on-hugo/images/find-discussion-template_huf811ced19a8aeaf6f5982c30de7c7de3_143539_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/10/how-to-install-disqus-on-hugo/images/find-discussion-template_huf811ced19a8aeaf6f5982c30de7c7de3_143539_cf51875457aa0b1b797e9e1fb3160e1b.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption&gt;
      Configure Disqus for your site.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h2 id=&#34;5-replace-content&#34;&gt;5. Replace content&lt;a href=&#34;#5-replace-content&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;Now go and edit this file, which should be found under &lt;code&gt;/themes/&amp;lt;your-theme-nam&amp;gt;/layouts/partials&lt;/code&gt;. You have to replace the whole content with the &lt;a href=&#34;https://github.com/rstudio/blogdown/issues/52#issuecomment-288407836&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;code snippet provided by Yihui Xie&lt;/a&gt; (Thanks a lot by the way!!). To help you, you can &lt;a href=&#34;https://github.com/petzi53/weblog/commit/b7993533e501e2f1668375e22fe05e1ceb7d87ae?diff=split&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;compare my changes at GitHub&lt;/a&gt;. But don&amp;rsquo;t forget to change the URL to your Disqus account [as I did :blush:]! 













&lt;figure  id=&#34;figure-replace-content-of-your-partial-template-as-explained&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Replace content of your partial template as explained&#34; srcset=&#34;
               /2017/09/10/how-to-install-disqus-on-hugo/images/my-github-changes_hu6a383ee614262c9dacedca7f6b9bce73_101297_5237f81468f1cf1d195932f781c6d36b.png 400w,
               /2017/09/10/how-to-install-disqus-on-hugo/images/my-github-changes_hu6a383ee614262c9dacedca7f6b9bce73_101297_58ebfecd1e202420a6e031c64fddbec1.png 760w,
               /2017/09/10/how-to-install-disqus-on-hugo/images/my-github-changes_hu6a383ee614262c9dacedca7f6b9bce73_101297_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/10/how-to-install-disqus-on-hugo/images/my-github-changes_hu6a383ee614262c9dacedca7f6b9bce73_101297_5237f81468f1cf1d195932f781c6d36b.png&#34;
               width=&#34;760&#34;
               height=&#34;309&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption&gt;
      Replace content of your partial template as explained
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h2 id=&#34;6-add-shortname&#34;&gt;6. Add shortname&lt;a href=&#34;#6-add-shortname&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;To finish the installation you have finally to add the line &lt;code&gt;disqusShortname = &amp;quot;&amp;lt;your-disqus-shortname&amp;gt;&amp;quot;&lt;/code&gt; to your config.toml. 













&lt;figure  id=&#34;figure-add-your-disqus-short-name-into-the-configtoml&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Add your Disqus short name into the config.toml&#34; srcset=&#34;
               /2017/09/10/how-to-install-disqus-on-hugo/images/add-disqus-shortname_hu998490df6211d796b582e89dd27b5c5a_89864_09b10b90e44035e543c32c93215e34c5.png 400w,
               /2017/09/10/how-to-install-disqus-on-hugo/images/add-disqus-shortname_hu998490df6211d796b582e89dd27b5c5a_89864_22acde4ad1abd36b6bff73099bcf10ed.png 760w,
               /2017/09/10/how-to-install-disqus-on-hugo/images/add-disqus-shortname_hu998490df6211d796b582e89dd27b5c5a_89864_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/10/how-to-install-disqus-on-hugo/images/add-disqus-shortname_hu998490df6211d796b582e89dd27b5c5a_89864_09b10b90e44035e543c32c93215e34c5.png&#34;
               width=&#34;760&#34;
               height=&#34;538&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption&gt;
      Add your Disqus short name into the config.toml
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h2 id=&#34;7-congratulation&#34;&gt;7. Congratulation!&lt;a href=&#34;#7-congratulation&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;You have integrated Disqus into your static website. Go to one of your posts and check it. Your end of the page should look similar as in the following graphic. 













&lt;figure  id=&#34;figure-disqus-forum-successfully-integrated&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Disqus forum successfully integrated&#34; srcset=&#34;
               /2017/09/10/how-to-install-disqus-on-hugo/images/disqus-integrated_hu38a0011c7955b2af3cb7354832802e4e_95356_9d3d9125f3758d18ab037f7d2118828c.png 400w,
               /2017/09/10/how-to-install-disqus-on-hugo/images/disqus-integrated_hu38a0011c7955b2af3cb7354832802e4e_95356_254fec1d9e8bf6d08faf82790c16bf8f.png 760w,
               /2017/09/10/how-to-install-disqus-on-hugo/images/disqus-integrated_hu38a0011c7955b2af3cb7354832802e4e_95356_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/10/how-to-install-disqus-on-hugo/images/disqus-integrated_hu38a0011c7955b2af3cb7354832802e4e_95356_9d3d9125f3758d18ab037f7d2118828c.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption&gt;
      Disqus forum successfully integrated
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h2 id=&#34;critical-remark-to-disqus&#34;&gt;Critical remark to Disqus&lt;a href=&#34;#critical-remark-to-disqus&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;I should mention that there is growing skepticism in the community about Disqus. People are not only criticizing slowness (load-time behavior) but above all they are concerned about data integrity. It seems that there are lots of &lt;a href=&#34;http://donw.io/post/github-comments/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;irrelevant requests&lt;/a&gt; to track the data traffic for whatever purpose nobody knows.&lt;/p&gt;
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Four years later I have changed to &lt;a href=&#34;https://utteranc.es&#34;&gt;utteranc.es&lt;/a&gt;.
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&lt;span class=&#39;Z3988&#39; title=&#39;url_ver=Z39.88-2004&amp;amp;ctx_ver=Z39.88-2004&amp;amp;rfr_id=info%3Asid%2Fzotero.org%3A2&amp;amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;amp;rft.type=blogPost&amp;amp;rft.title=How%20to%20install%20Disqus%20on%20Hugo?&amp;amp;rft.source=Thought%20splinters&amp;amp;rft.rights=CC%20BY-SA%204.0&amp;amp;rft.description=This%20post%20explains%20how%20to%20integrate%20Disqus%20as%20a%20discussion%20forum%20for%20your%20website.%20It%20is%20not%20a%20thing%20you%20can%20do%20directly%20applying%20the%20Hugo%20documentation%20because%20there%20is%20a%20faulty%20template%20to%20change.&amp;amp;rft.identifier=https%3A%2F%2Fnotes.peter-baumgartner.net%2F2017%2F09%2F10%2Fhow-to-install-disqus-on-hugo&amp;amp;rft.aufirst=Peter&amp;amp;rft.aulast=Baumgartner&amp;amp;rft.au=Peter%20Baumgartner&amp;amp;rft.date=2017-09-10&amp;amp;rft.language=en&#39;&gt;&lt;/span&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Blogdown tutorial (Part 4)</title>
      <link>https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/</link>
      <pubDate>Sat, 09 Sep 2017 00:00:00 +0000</pubDate>
      <guid>https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/</guid>
      <description>


&lt;h2 id=&#34;bring-your-website-online-from-blogdown-via-github-to-netlify&#34;&gt;Bring your website online: From blogdown via GitHub to Netlify&lt;a href=&#34;#bring-your-website-online-from-blogdown-via-github-to-netlify&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    &lt;p&gt;Update 2021-05-19: Because of breaking changes in &lt;code&gt;Hugo&lt;/code&gt; and new features in &lt;code&gt;blogdown&lt;/code&gt; this post is partly outdated. Starting with &lt;a href=&#34;(https://blog.rstudio.com/2021/01/18/blogdown-v1.0/)&#34;&gt;blogdown version 1.0&lt;/a&gt; you do not build the website always from scratch.&lt;/p&gt;
&lt;p&gt;Complement this sequence of the tutorial with reading &lt;a href=&#34;https://alison.rbind.io/post/new-year-new-blogdown/&#34;&gt;Up &amp;amp; running with blogdown in 2021&lt;/a&gt; by Allison Hill, co-author of the &lt;a href=&#34;https://bookdown.org/yihui/blogdown/&#34;&gt;blogdown book&lt;/a&gt;.&lt;/p&gt;
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;We start this last part of the tutorial &lt;a href=&#34;https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/#inspect-post-locally&#34;&gt;where we have finished last time&lt;/a&gt;.&lt;/p&gt;



&lt;h3 id=&#34;ignore-public-folder&#34;&gt;Ignore public folder&lt;a href=&#34;#ignore-public-folder&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;One benefit of using Netlify is that that there is no need to upload your large public folder to get your website. Netlify will compile the source files and build by its own the Hugo site. You should take advantage of this feature by telling RStudio that the &lt;code&gt;public&lt;/code&gt;-folder does not need version control, committed and uploaded. Select the public folder under the Git tab on the right upper pane and select from the configuration menu &lt;code&gt;ignore…&lt;/code&gt;. 













&lt;figure  id=&#34;figure-ignore-public-folder&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Ignore public folder&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/ignore-public-folder_hu719d3a4a08ba5dbd49572de38665b0d6_117637_d61285ceee4ac7abe101ba1a761d60db.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/ignore-public-folder_hu719d3a4a08ba5dbd49572de38665b0d6_117637_7a1edd9da466e1bce2231e7eeb352c17.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/ignore-public-folder_hu719d3a4a08ba5dbd49572de38665b0d6_117637_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/ignore-public-folder_hu719d3a4a08ba5dbd49572de38665b0d6_117637_d61285ceee4ac7abe101ba1a761d60db.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Ignore public folder
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;confirm-gitignore&#34;&gt;Confirm .gitignore&lt;a href=&#34;#confirm-gitignore&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;This will bring up a window where you can specify which files are to be ignored. Confirm the inclusion of the public folder with clicking &amp;lsquo;Save&amp;rsquo;. 













&lt;figure  id=&#34;figure-confirm-the-exclusion-of-the-public-folder&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Confirm the exclusion of the public folder.&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/git-ignore-public-folder_huc5783e85102c1a17ec22215075f4d82a_122612_42472a7c563110805590b3f674b5bd2c.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/git-ignore-public-folder_huc5783e85102c1a17ec22215075f4d82a_122612_c13de71ac01d0818c1f49da9bb8c713a.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/git-ignore-public-folder_huc5783e85102c1a17ec22215075f4d82a_122612_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/git-ignore-public-folder_huc5783e85102c1a17ec22215075f4d82a_122612_42472a7c563110805590b3f674b5bd2c.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Confirm the exclusion of the public folder.
    &lt;/figcaption&gt;&lt;/figure&gt; This saved file (&lt;code&gt;.gitignore&lt;/code&gt;) will be added as modified to the version control. 













&lt;figure  id=&#34;figure-gitignore-file-added&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;.gitignore file added&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/gitignore-modified_hua76a2a2b52beadba45e8bd92e758e41a_23754_1995fc9d2309277662bfd98904fef85a.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/gitignore-modified_hua76a2a2b52beadba45e8bd92e758e41a_23754_ab74f95aadec755ccd44fc87dc387ef0.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/gitignore-modified_hua76a2a2b52beadba45e8bd92e758e41a_23754_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/gitignore-modified_hua76a2a2b52beadba45e8bd92e758e41a_23754_1995fc9d2309277662bfd98904fef85a.png&#34;
               width=&#34;760&#34;
               height=&#34;398&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      .gitignore file added
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;clean-up&#34;&gt;Clean up&lt;a href=&#34;#clean-up&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;Before we are going to rebuild the complete site, I recommend to take some precaution. To rebuild from a clean slate I restart R (Under the RStudio menu &amp;lsquo;Session&amp;rsquo; or CMD-Shift-F10 on MacOS.) and clean up all unnecessary files (&amp;lsquo;Clean All&amp;rsquo; in the &amp;lsquo;Build&amp;rsquo; tab under the &amp;lsquo;More&amp;rsquo; menu in the upper right pane.) 













&lt;figure  id=&#34;figure-rebuild-website-from-a-clean-status&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Rebuild website from a clean status.&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/clean-all_huadd80b31f39aa2835db852f1a303ecc1_349799_635e6fb82267811733b5355d43e0e79d.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/clean-all_huadd80b31f39aa2835db852f1a303ecc1_349799_bb71d02350849f8e7c4b3ceea12463f5.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/clean-all_huadd80b31f39aa2835db852f1a303ecc1_349799_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/clean-all_huadd80b31f39aa2835db852f1a303ecc1_349799_635e6fb82267811733b5355d43e0e79d.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Rebuild website from a clean status.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;build-website&#34;&gt;Build website&lt;a href=&#34;#build-website&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;Now you can safely (re-)build the website by clicking into &amp;lsquo;Build Website&amp;rsquo;. You get a message of all the activities done, the time necessary for the build and were the output was created. [Personal comment: Frankly I do not know if the last two steps are really necessary when Netlify is running its own scripts.] 













&lt;figure  id=&#34;figure-rendering-website-content&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Rendering website content.&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/build-website_hud8a10d9b3ea325cc43828cf9c6768e59_39744_b481d720486d73f9def4dc132438e063.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/build-website_hud8a10d9b3ea325cc43828cf9c6768e59_39744_9c84fb8f740a05d901d52f7ced31b580.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/build-website_hud8a10d9b3ea325cc43828cf9c6768e59_39744_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/build-website_hud8a10d9b3ea325cc43828cf9c6768e59_39744_b481d720486d73f9def4dc132438e063.png&#34;
               width=&#34;760&#34;
               height=&#34;502&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Rendering website content.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;commit-changes&#34;&gt;Commit changes&lt;a href=&#34;#commit-changes&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;The next step is to select all changed files under the Git tab and to choose &amp;ldquo;Commit&amp;rdquo;, write a commit message and to confirm these changes. 













&lt;figure  id=&#34;figure-select-stage-content-for-next-commit&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Select (stage) content for next commit.&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/commit-changes_hu41db2f74afce4d20fc3d397ff740dbf7_175941_5b10731ab778128d67e0a41b132d731a.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/commit-changes_hu41db2f74afce4d20fc3d397ff740dbf7_175941_93c74da27c39d8959addcf83e874760d.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/commit-changes_hu41db2f74afce4d20fc3d397ff740dbf7_175941_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/commit-changes_hu41db2f74afce4d20fc3d397ff740dbf7_175941_5b10731ab778128d67e0a41b132d731a.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Select (stage) content for next commit.
    &lt;/figcaption&gt;&lt;/figure&gt; 













&lt;figure  id=&#34;figure-bring-all-changes-under-version-control-and-check-if-everything-went-smoothly&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Bring all changes under version control and check if everything went smoothly.&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/reviewed-changes_hue4ba473f39ba51484575aa9ad75e3e17_49580_e2d9b4812f53a00452cd053bc190db34.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/reviewed-changes_hue4ba473f39ba51484575aa9ad75e3e17_49580_12f4c1b48f916200a52d062c667a0708.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/reviewed-changes_hue4ba473f39ba51484575aa9ad75e3e17_49580_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/reviewed-changes_hue4ba473f39ba51484575aa9ad75e3e17_49580_e2d9b4812f53a00452cd053bc190db34.png&#34;
               width=&#34;760&#34;
               height=&#34;311&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Bring all changes under version control and check if everything went smoothly.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;push-changes&#34;&gt;Push changes&lt;a href=&#34;#push-changes&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;Now you can transfer all your committed changes to GitHub. After clicking on the push button a window opens and you can see if the changed files are transferred successfully. 













&lt;figure  id=&#34;figure-push-the-committed-files-to-github&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Push the committed files to GitHub.&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/push-changes_huc27728b4157f0e9813c54830e1857236_154730_be3c5587bfbcd5133618ebc8f3db2727.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/push-changes_huc27728b4157f0e9813c54830e1857236_154730_ae7ef24d45ce5f7fb046740ae353b7bc.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/push-changes_huc27728b4157f0e9813c54830e1857236_154730_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/push-changes_huc27728b4157f0e9813c54830e1857236_154730_be3c5587bfbcd5133618ebc8f3db2727.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Push the committed files to GitHub.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;inspect-repo&#34;&gt;Inspect repo&lt;a href=&#34;#inspect-repo&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;If you don&amp;rsquo;t trust this process, you can direct your browser to your GitHub repository and check if really the last commit &amp;ldquo;First post&amp;rdquo; has safely arrived. 













&lt;figure  id=&#34;figure-inspect-your-repo-on-github-to-confirm-the-procedure&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Inspect your repo on GitHub to confirm the procedure.&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/inspect-repo_hu2708250e120ee9fa9215e63ea1b182b5_93155_95a8254cdec9e56168c4b2a35e861f77.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/inspect-repo_hu2708250e120ee9fa9215e63ea1b182b5_93155_d281a98b6a081a05b569f2236c39a5c4.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/inspect-repo_hu2708250e120ee9fa9215e63ea1b182b5_93155_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/inspect-repo_hu2708250e120ee9fa9215e63ea1b182b5_93155_95a8254cdec9e56168c4b2a35e861f77.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Inspect your repo on GitHub to confirm the procedure.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;get-netlify-account&#34;&gt;Get Netlify account&lt;a href=&#34;#get-netlify-account&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;The last task we are going to solve is the connection the GitHub repository to the Netlifly service. Go to &lt;a href=&#34;https://www.netlify.com/&#34;&gt;https://www.netlify.com/&lt;/a&gt; and create a free new account (&amp;ldquo;Get started for free&amp;rdquo;). 













&lt;figure  id=&#34;figure-inspect-your-repo-on-github-to-confirm-the-procedure&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Inspect your repo on GitHub to confirm the procedure.&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/create-account-on-netlify_huc73b45aa90b2ed83878b957c4838222f_153100_1a2c84e708f8bb11425811a894aad04f.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/create-account-on-netlify_huc73b45aa90b2ed83878b957c4838222f_153100_4afc1032b0ec3e231387ad07b3febbbf.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/create-account-on-netlify_huc73b45aa90b2ed83878b957c4838222f_153100_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/create-account-on-netlify_huc73b45aa90b2ed83878b957c4838222f_153100_1a2c84e708f8bb11425811a894aad04f.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Inspect your repo on GitHub to confirm the procedure.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;let-netlify-access-your-repo&#34;&gt;Let Netlify access your repo&lt;a href=&#34;#let-netlify-access-your-repo&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;After the registration procedure you get a page where you can choose &amp;lsquo;New Site from Git&amp;rsquo;. 













&lt;figure  id=&#34;figure-new-site-from-git&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;New Site from Git&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-empty_hue25765c7b0e8fa543766483f7a3a6257_37268_9b93da680827e054a4f1f8a8605ee3fe.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-empty_hue25765c7b0e8fa543766483f7a3a6257_37268_1e2b9038313ed237a77cf7406791963e.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-empty_hue25765c7b0e8fa543766483f7a3a6257_37268_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/netlify-empty_hue25765c7b0e8fa543766483f7a3a6257_37268_9b93da680827e054a4f1f8a8605ee3fe.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      New Site from Git
    &lt;/figcaption&gt;&lt;/figure&gt; There are essential three step to create the new website: (A) Choose GitHub as your Git repository. This will bring up a window where you have to confirm that you will allow Netlify access to your GitHub account. 













&lt;figure  id=&#34;figure-autorize-netlify&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Autorize Netlify&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-authorization_hu0e8c3075b2cc29830072682f019be21e_59996_1ca211162f392c4f1a77581f0ab6d83b.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-authorization_hu0e8c3075b2cc29830072682f019be21e_59996_ec880050215fc33ef18cc416558c1c0f.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-authorization_hu0e8c3075b2cc29830072682f019be21e_59996_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/netlify-authorization_hu0e8c3075b2cc29830072682f019be21e_59996_1ca211162f392c4f1a77581f0ab6d83b.png&#34;
               width=&#34;760&#34;
               height=&#34;532&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Autorize Netlify
    &lt;/figcaption&gt;&lt;/figure&gt; (B) Then you have to specify to which repository Netlify should connect. 













&lt;figure  id=&#34;figure-choose-your-website-repository&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Choose your website repository.&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-choose-repo_hufb6672971373fa201064206ba56b7850_61819_9c2cc12f2e0d3bf34727c89a8fd70309.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-choose-repo_hufb6672971373fa201064206ba56b7850_61819_6d613b96b0ebe56febe3ce56f21546da.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-choose-repo_hufb6672971373fa201064206ba56b7850_61819_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/netlify-choose-repo_hufb6672971373fa201064206ba56b7850_61819_9c2cc12f2e0d3bf34727c89a8fd70309.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Choose your website repository.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;deploy-settings&#34;&gt;Deploy settings&lt;a href=&#34;#deploy-settings&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;In the third and last step (C in my former notation) on Netlify to create your website you have to specify the details (parameters) to let Netlify know which type of website it has to build. In the example in the screenshot I said that Netlify should watch my master branch, build a Hugo website from the public repository with the newest version of Hugo at the time of writing this tutorial (version 0.26). 













&lt;figure  id=&#34;figure-specify-the-deploy-settings&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Specify the deploy settings.&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-deploy-settings_hu12e508f650636e963471cce3c4c8e991_75765_e37f7b7cf93299b1ea26346f63f6b327.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-deploy-settings_hu12e508f650636e963471cce3c4c8e991_75765_3590196c93a8f29f63584b5534e3bff4.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-deploy-settings_hu12e508f650636e963471cce3c4c8e991_75765_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/netlify-deploy-settings_hu12e508f650636e963471cce3c4c8e991_75765_e37f7b7cf93299b1ea26346f63f6b327.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Specify the deploy settings.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;deploy-website&#34;&gt;Deploy website&lt;a href=&#34;#deploy-website&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;After clicking &amp;ldquo;Deploy website&amp;rdquo; you can lean back and watch Netlify busy working on building the website. This may take for this initial step some time but later on Netlify will finish work almost immediately as it only builds the new/changed files incrementally. When the rolling down of the messages stops you should see as last line: &amp;ldquo;Site is live&amp;rdquo;! 













&lt;figure  id=&#34;figure-wait--and-watch-netlify-working-until-it-is-finished&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Wait — and watch Netlify working until it is finished.&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-site-is-live_hu3e108f9c2ec2545ba1ec933125e37f22_125573_32623897c732ff6762951ae2b24c442b.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-site-is-live_hu3e108f9c2ec2545ba1ec933125e37f22_125573_6b02473558cfbdb4df854b7554d0be0a.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-site-is-live_hu3e108f9c2ec2545ba1ec933125e37f22_125573_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/netlify-site-is-live_hu3e108f9c2ec2545ba1ec933125e37f22_125573_32623897c732ff6762951ae2b24c442b.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Wait — and watch Netlify working until it is finished.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;preview-deploy&#34;&gt;Preview deploy&lt;a href=&#34;#preview-deploy&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;Scroll back to the beginning of the log messages. You will see that Netlify has giving you a random URL but you can change this later on to your liking. Click &amp;ldquo;Preview deploy&amp;rdquo; to go to the URL of your new website. 













&lt;figure  id=&#34;figure-inspect-your-random-url&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Inspect your random URL.&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-preview-deploy_hu80f74a2efe29be0eb3484699c5687131_114761_9fb214057aa7808f0f0d23f3c00f5b52.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-preview-deploy_hu80f74a2efe29be0eb3484699c5687131_114761_3366748a0b05fc45843249d3666facae.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/netlify-preview-deploy_hu80f74a2efe29be0eb3484699c5687131_114761_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/netlify-preview-deploy_hu80f74a2efe29be0eb3484699c5687131_114761_9fb214057aa7808f0f0d23f3c00f5b52.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Inspect your random URL.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;website-is-online&#34;&gt;Website is online!&lt;a href=&#34;#website-is-online&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;Congratulations! Your website is now online. 













&lt;figure  id=&#34;figure-your-website-is-online&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Your website is online.&#34; srcset=&#34;
               /2017/09/09/blogdown-tutorial-part-4/images/website-is-online_hu953c9fef6f5acfbcf9c502823bcc3762_168685_90a6332992bdb209beea630c78355c92.png 400w,
               /2017/09/09/blogdown-tutorial-part-4/images/website-is-online_hu953c9fef6f5acfbcf9c502823bcc3762_168685_da0539e5e42711ef39ab5065032c60ae.png 760w,
               /2017/09/09/blogdown-tutorial-part-4/images/website-is-online_hu953c9fef6f5acfbcf9c502823bcc3762_168685_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/images/website-is-online_hu953c9fef6f5acfbcf9c502823bcc3762_168685_90a6332992bdb209beea630c78355c92.png&#34;
               width=&#34;760&#34;
               height=&#34;443&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Your website is online.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h2 id=&#34;final-comments&#34;&gt;Final comments&lt;a href=&#34;#final-comments&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;This was a very quick tour where I have covered just the things I believed to be essential. If you are (like me) new to static website generators then the different steps together seem overwhelmingly complex. But with patience and some trial and errors you should succeed &amp;mdash; as I have. There are many other (better) tutorials and How-Tos around. You should definitely read carefully the book &lt;a href=&#34;https://bookdown.org/yihui/blogdown/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;blogdown: Creating websites with R Markdown&lt;/a&gt; and the reports of different experiences from the new &lt;a href=&#34;https://support.rbind.io/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;rbind community&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;span class=&#39;Z3988&#39; title=&#39;url_ver=Z39.88-2004&amp;amp;ctx_ver=Z39.88-2004&amp;amp;rfr_id=info%3Asid%2Fzotero.org%3A2&amp;amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;amp;rft.type=blogPost&amp;amp;rft.title=Blogdown%20tutorial%20(Part%204)&amp;amp;rft.source=Thought%20splinters&amp;amp;rft.rights=CC%20BY-SA%204.0&amp;amp;rft.description=In%20this%20fourth%20part%20of%20the%20tutorial%20I%20will%20explain%20a%20method%20how%20to%20bring%20your%20website%20online.%20My%20preferred%20method%20is%20to%20transfer%20the%20files%20via%20GitHub%20to%20Netlify,%20a%20service%20specialized%20for%20quickly%20rolling%20out%20static%20websites.&amp;amp;rft.identifier=https%3A%2F%2Fnotes.peter-baumgartner.net%2F2017%2F09%2F09%2Fblogdown-tutorial-part-4&amp;amp;rft.aufirst=Peter&amp;amp;rft.aulast=Baumgartner&amp;amp;rft.au=Peter%20Baumgartner&amp;amp;rft.date=2017-09-09&amp;amp;rft.language=en&#39;&gt;&lt;/span&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Blogdown tutorial (Part 3)</title>
      <link>https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/</link>
      <pubDate>Fri, 08 Sep 2017 00:00:00 +0000</pubDate>
      <guid>https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/</guid>
      <description>


&lt;h2 id=&#34;live-preview-of-your-website&#34;&gt;Live preview of your website&lt;a href=&#34;#live-preview-of-your-website&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    &lt;p&gt;Update 2021-05-19: Because of breaking changes in &lt;code&gt;Hugo&lt;/code&gt; and new features in &lt;code&gt;blogdown&lt;/code&gt; this post is partly outdated.&lt;/p&gt;
&lt;p&gt;Complement this sequence of the tutorial with reading &lt;a href=&#34;https://alison.rbind.io/post/new-year-new-blogdown/&#34;&gt;Up &amp;amp; running with blogdown in 2021&lt;/a&gt; by Allison Hill, co-author of the &lt;a href=&#34;https://bookdown.org/yihui/blogdown/&#34;&gt;blogdown book&lt;/a&gt;. With some knowledge the explanation of the &lt;a href=&#34;https://blog.rstudio.com/2021/01/18/blogdown-v1.0/&#34;&gt;changes of blogdown version 1.0&lt;/a&gt; could also be useful.&lt;/p&gt;
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;In this third part of the blogdown tutorial I will explain the necessary steps to get a live preview of your website. The main advantage to bring up your website locally is that you can view and test your website during working on your post without the need of an internet connection. You have not even to reload the page as this is done automatically through a technology called &lt;a href=&#34;http://livereload.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;LiveReload&lt;/a&gt;.&lt;/p&gt;



&lt;h3 id=&#34;warning-after-installation&#34;&gt;Warning after installation&lt;a href=&#34;#warning-after-installation&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;After we have finishing the installation we have gotten a red warning. It is a reminder not to transfer files which are not used displaying the website. At that time we didn&amp;rsquo;t bother about it. I have replicated the &lt;a href=&#34;https://notes.peter-baumgartner.net/2017/09/04/blogdown-tutorial-part-1/#8-create-project&#34;&gt;picture of step number 8&lt;/a&gt; of the first part of this tutorial as a starting point for this third part of the tutorial. 













&lt;figure  id=&#34;figure-rstudios-four-pane-view-immediately-after-installation&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;RStudio&amp;#39;s four pane view immediately after installation. &#34; srcset=&#34;
               /2017/09/08/blogdown-tutorial-part-3/images/four-pane-view-after-installation_hu493471b1e3bf66c0242f96339ab8178d_184845_9f15cb901c7c042db902f3558544ab48.png 400w,
               /2017/09/08/blogdown-tutorial-part-3/images/four-pane-view-after-installation_hu493471b1e3bf66c0242f96339ab8178d_184845_d689a39c8f948f4198597cfe37a1c31b.png 760w,
               /2017/09/08/blogdown-tutorial-part-3/images/four-pane-view-after-installation_hu493471b1e3bf66c0242f96339ab8178d_184845_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/images/four-pane-view-after-installation_hu493471b1e3bf66c0242f96339ab8178d_184845_9f15cb901c7c042db902f3558544ab48.png&#34;
               width=&#34;760&#34;
               height=&#34;466&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      RStudio&amp;rsquo;s four pane view immediately after installation.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;ignore-some-file-types&#34;&gt;Ignore some file types&lt;a href=&#34;#ignore-some-file-types&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;After the installation &lt;code&gt;config.toml&lt;/code&gt; is opened automatically by RStudio. We add the recommended line &lt;code&gt;ignoreFiles = [&amp;quot;\\.Rmd$&amp;quot;, &amp;quot;\\.Rmarkdown$&amp;quot;, &amp;quot;_files$&amp;quot;, &amp;quot;_cache$&amp;quot;]&lt;/code&gt; in an upper place. On this occasion we also change the base URL (first line) to &lt;code&gt;/&lt;/code&gt;. After saving theses changes the version control (Git tab right upper pane) will display &lt;code&gt;config.toml&lt;/code&gt; with a blue &lt;code&gt;M&lt;/code&gt; (modified). 













&lt;figure  id=&#34;figure-some-changes-in-the-configtoml&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Some changes in the config.toml &#34; srcset=&#34;
               /2017/09/08/blogdown-tutorial-part-3/images/changes-in-config-toml_hu10a7b991bf9f442ed9383391d74397fa_184301_e53960bc6718ca02781fc0480ced9324.png 400w,
               /2017/09/08/blogdown-tutorial-part-3/images/changes-in-config-toml_hu10a7b991bf9f442ed9383391d74397fa_184301_7a31d578892ed06567f55d4dd71a015f.png 760w,
               /2017/09/08/blogdown-tutorial-part-3/images/changes-in-config-toml_hu10a7b991bf9f442ed9383391d74397fa_184301_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/images/changes-in-config-toml_hu10a7b991bf9f442ed9383391d74397fa_184301_e53960bc6718ca02781fc0480ced9324.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Some changes in the config.toml
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;demonize-server&#34;&gt;Demonize server&lt;a href=&#34;#demonize-server&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;Before we start posting our website locally we should arrange that the local server runs as a background process (= aka to demonize the server). You can run the command &lt;code&gt;options(servr.daemon = TRUE)&lt;/code&gt; on the console (lower left pane), but &amp;ndash; as I am using this process all the time &amp;ndash; I prefer to write this line into my start up file. On this occasion I also add some other convenient commands to facilitate the generation of new posts. See the &lt;a href=&#34;https://bookdown.org/yihui/blogdown/global-options.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;blogdown page on global options&lt;/a&gt; for more details. 













&lt;figure  id=&#34;figure-set-options-in-rprofile&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Set Options in Rprofile. &#34; srcset=&#34;
               /2017/09/08/blogdown-tutorial-part-3/images/set-options-in-rprofile_huff4f7ee367e567725f0d9677e9f27985_184806_9658c87cbb6d983117d167ac56780bd1.png 400w,
               /2017/09/08/blogdown-tutorial-part-3/images/set-options-in-rprofile_huff4f7ee367e567725f0d9677e9f27985_184806_f7f5ee06dc1e885bf83b466b7dff4281.png 760w,
               /2017/09/08/blogdown-tutorial-part-3/images/set-options-in-rprofile_huff4f7ee367e567725f0d9677e9f27985_184806_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/images/set-options-in-rprofile_huff4f7ee367e567725f0d9677e9f27985_184806_9658c87cbb6d983117d167ac56780bd1.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Set Options in Rprofile.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;start-local-server&#34;&gt;Start local server&lt;a href=&#34;#start-local-server&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;We can now start the local servers: Choose from the &amp;ldquo;Addins&amp;rdquo; menu the &amp;ldquo;Serve Site&amp;rdquo; option. This will run the command &lt;code&gt;blogdown::serve_site()&lt;/code&gt; to build the site to get a live preview of the website locally. 













&lt;figure  id=&#34;figure-choose-serve-site-to-get-a-live-preview-of-the-website-locally&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Choose &amp;#39;Serve Site&amp;#39; to get a live preview of the website locally.&#34; srcset=&#34;
               /2017/09/08/blogdown-tutorial-part-3/images/serve-site_huc09d1f297ee574f119400842d141c474_216834_7e22aa04e06daf305b15dfcc01e3f9bf.png 400w,
               /2017/09/08/blogdown-tutorial-part-3/images/serve-site_huc09d1f297ee574f119400842d141c474_216834_1642260f1bd0de959e90e2b7fb131356.png 760w,
               /2017/09/08/blogdown-tutorial-part-3/images/serve-site_huc09d1f297ee574f119400842d141c474_216834_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/images/serve-site_huc09d1f297ee574f119400842d141c474_216834_7e22aa04e06daf305b15dfcc01e3f9bf.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Choose &amp;lsquo;Serve Site&amp;rsquo; to get a live preview of the website locally.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;building-the-website&#34;&gt;Building the website&lt;a href=&#34;#building-the-website&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;Blogdown is building the site and will give you the local server address. It is normally &lt;code&gt;http://127.0.0.1:4321/&lt;/code&gt;. While the server is demonized you can still use the console, otherwise a small red stop sign will appear in the right corner of left lower pane and no command can be run in the console window. The best way to stop the server is to restart R (shortcut = &lt;code&gt;CMD + SHIFT + F10&lt;/code&gt;). 













&lt;figure  id=&#34;figure-set-options-in-rprofile&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Set Options in Rprofile. &#34; srcset=&#34;
               /2017/09/08/blogdown-tutorial-part-3/images/getting-local-server-address_hue941f22564bc09710e23a2995deea9aa_188685_125ccde3f6b060c83dc60881b2328d9f.png 400w,
               /2017/09/08/blogdown-tutorial-part-3/images/getting-local-server-address_hue941f22564bc09710e23a2995deea9aa_188685_4ee2f87db0042bd9c03e2cb2e454be41.png 760w,
               /2017/09/08/blogdown-tutorial-part-3/images/getting-local-server-address_hue941f22564bc09710e23a2995deea9aa_188685_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/images/getting-local-server-address_hue941f22564bc09710e23a2995deea9aa_188685_125ccde3f6b060c83dc60881b2328d9f.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Set Options in Rprofile.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;first-preview-locally&#34;&gt;First preview locally&lt;a href=&#34;#first-preview-locally&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;We can now inspect our website in a browser with the web address &lt;code&gt;http://127.0.0.1:4321/&lt;/code&gt;. Whenever we type something in one of our files and save the changes blogdown will rebuild the site and we can immediately see the changes in the browser via the local address. 













&lt;figure  id=&#34;figure-first-view-of-live-preview-locally&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;First view of live preview locally. &#34; srcset=&#34;
               /2017/09/08/blogdown-tutorial-part-3/images/first-view-website-locally_hucb042d57af7ef719cae485c00080e00b_170529_9f4c54b4775b554756727db608f694c0.png 400w,
               /2017/09/08/blogdown-tutorial-part-3/images/first-view-website-locally_hucb042d57af7ef719cae485c00080e00b_170529_6fb094bf8375ccf8c62514cf771e4a86.png 760w,
               /2017/09/08/blogdown-tutorial-part-3/images/first-view-website-locally_hucb042d57af7ef719cae485c00080e00b_170529_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/images/first-view-website-locally_hucb042d57af7ef719cae485c00080e00b_170529_9f4c54b4775b554756727db608f694c0.png&#34;
               width=&#34;760&#34;
               height=&#34;431&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      First view of live preview locally.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;adapt-personal-information&#34;&gt;Adapt personal information&lt;a href=&#34;#adapt-personal-information&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;Until now all the information this tutorial has provided was the same whatever theme you are going to choose from the &lt;a href=&#34;https://themes.gohugo.io/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hugo theme wsebsite&lt;/a&gt;. But from here now comes your specified theme into play we will look into some necessary adaptions before we going to publish our new website. You can now adapt the personal information in your config.toml file. Read the documentation which comes included as posts of the sample site &lt;code&gt;http://127.0.0.1/#post&lt;/code&gt; or go directly to the &lt;a href=&#34;https://sourcethemes.com/academic/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;demo site&lt;/a&gt;. I have for instance changed the title of the website from &amp;lsquo;Academic&amp;rsquo; to &amp;lsquo;Blogdown Test&amp;rsquo;. 













&lt;figure  id=&#34;figure-changed-title-from-academic-to-blogdown-test&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Changed title from &amp;#39;Academic&amp;#39; to &amp;#39;Blogdown Test&amp;#39; &#34; srcset=&#34;
               /2017/09/08/blogdown-tutorial-part-3/images/first-change_hu8e42143c90f74ab42fc86130c448a8ff_202273_657877ddea0666f9c2bb5abb1c0dab40.png 400w,
               /2017/09/08/blogdown-tutorial-part-3/images/first-change_hu8e42143c90f74ab42fc86130c448a8ff_202273_d74d399ab6f26a8f15a33de8d2d76b67.png 760w,
               /2017/09/08/blogdown-tutorial-part-3/images/first-change_hu8e42143c90f74ab42fc86130c448a8ff_202273_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/images/first-change_hu8e42143c90f74ab42fc86130c448a8ff_202273_657877ddea0666f9c2bb5abb1c0dab40.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Changed title from &amp;lsquo;Academic&amp;rsquo; to &amp;lsquo;Blogdown Test&amp;rsquo;
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;create-first-post&#34;&gt;Create first post&lt;a href=&#34;#create-first-post&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;To write posts choose &amp;lsquo;New Post&amp;rsquo; from the Addins menu. 













&lt;figure  id=&#34;figure-create-a-new-post&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Create a new post. &#34; srcset=&#34;
               /2017/09/08/blogdown-tutorial-part-3/images/new-post_hu596751114e41fb261c95a3be79db9ffa_137329_20b52e6e090088ecdf8f0375b7845b84.png 400w,
               /2017/09/08/blogdown-tutorial-part-3/images/new-post_hu596751114e41fb261c95a3be79db9ffa_137329_c0e5a98c1b27e473382bdb7418d46063.png 760w,
               /2017/09/08/blogdown-tutorial-part-3/images/new-post_hu596751114e41fb261c95a3be79db9ffa_137329_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/images/new-post_hu596751114e41fb261c95a3be79db9ffa_137329_20b52e6e090088ecdf8f0375b7845b84.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Create a new post.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;add-metadata&#34;&gt;Add metadata&lt;a href=&#34;#add-metadata&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;This will open up a window to fill in metadata. This form is already populated with the variable from our .Rprofile, so that you only have to add the post title. File name and slug will be generated automatically from the post title. Categories and tags can be filled now &amp;mdash; or later written in the file header or via the Addins menu &amp;lsquo;Update Metadata&amp;rsquo; added. 













&lt;figure  id=&#34;figure-fill-in-the-prepopulated-post-form&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Fill in the prepopulated post form. &#34; srcset=&#34;
               /2017/09/08/blogdown-tutorial-part-3/images/new-post-form_hufbeac19db2fe0fc359e246ab69386eda_140830_42855de5a8697f478d63158faefe4c8e.png 400w,
               /2017/09/08/blogdown-tutorial-part-3/images/new-post-form_hufbeac19db2fe0fc359e246ab69386eda_140830_e39ebc58efaf1b99572b53b351bc8510.png 760w,
               /2017/09/08/blogdown-tutorial-part-3/images/new-post-form_hufbeac19db2fe0fc359e246ab69386eda_140830_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/images/new-post-form_hufbeac19db2fe0fc359e246ab69386eda_140830_42855de5a8697f478d63158faefe4c8e.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Fill in the prepopulated post form.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;start-editing-text&#34;&gt;Start editing text&lt;a href=&#34;#start-editing-text&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;The &amp;lsquo;New Post&amp;rsquo; form creates a new file for the post. The first few lines are filled with metadata of the post. You start with the post text under the second three dashes of the post header. To format your text nicely learn the Markdown 













&lt;figure  id=&#34;figure-first-post-entry&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;First post entry. &#34; srcset=&#34;
               /2017/09/08/blogdown-tutorial-part-3/images/first-text-entry_hu7e485e4a81b2398acc8856bc1b69bbf8_147875_ddd59548a00ae95c51ba8c7562aef272.png 400w,
               /2017/09/08/blogdown-tutorial-part-3/images/first-text-entry_hu7e485e4a81b2398acc8856bc1b69bbf8_147875_7c5aa83e6b4d01f6ef38a7a56c39ad26.png 760w,
               /2017/09/08/blogdown-tutorial-part-3/images/first-text-entry_hu7e485e4a81b2398acc8856bc1b69bbf8_147875_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/images/first-text-entry_hu7e485e4a81b2398acc8856bc1b69bbf8_147875_ddd59548a00ae95c51ba8c7562aef272.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      First post entry.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;inspect-post-locally&#34;&gt;Inspect post locally&lt;a href=&#34;#inspect-post-locally&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;After saving your text, you can finally inspect your first post locally! Posts in the hugo-academic theme can be found in post section of the website. 













&lt;figure  id=&#34;figure-your-first-post&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Your first post!&#34; srcset=&#34;
               /2017/09/08/blogdown-tutorial-part-3/images/first-post_hu2782240a9612cd5834e18c8a10f3b78b_138369_384f9743e0f45041755e3b0b977faedb.png 400w,
               /2017/09/08/blogdown-tutorial-part-3/images/first-post_hu2782240a9612cd5834e18c8a10f3b78b_138369_ac42a7aa64a581c9a16ba6aedbc3edcc.png 760w,
               /2017/09/08/blogdown-tutorial-part-3/images/first-post_hu2782240a9612cd5834e18c8a10f3b78b_138369_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/images/first-post_hu2782240a9612cd5834e18c8a10f3b78b_138369_384f9743e0f45041755e3b0b977faedb.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Your first post!
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    It may be the case that the generation of you first post produces a warning. After Hugo version 0.24 a prototype for new generated files is necessary. In that case create a file with the command &lt;code&gt;file.edit(&amp;quot;archetype/default.md&amp;quot;)&lt;/code&gt; and add the example text written in the warning message.
  &lt;/div&gt;
&lt;/div&gt;














&lt;figure  id=&#34;figure-a-warning-informs-you-to-create-a-file-with-a-specified-text&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;A warning informs you to create a file with a specified text.&#34; srcset=&#34;
               /2017/09/08/blogdown-tutorial-part-3/images/warning-archetypes-default_huf35fdeb2ef099dd42dbf456dbfd2e1d1_154301_0750df2ea5b94a637316ea0760784f3a.png 400w,
               /2017/09/08/blogdown-tutorial-part-3/images/warning-archetypes-default_huf35fdeb2ef099dd42dbf456dbfd2e1d1_154301_e4c601fa7b7592bfc67b9b8ee3a6909a.png 760w,
               /2017/09/08/blogdown-tutorial-part-3/images/warning-archetypes-default_huf35fdeb2ef099dd42dbf456dbfd2e1d1_154301_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/08/blogdown-tutorial-part-3/images/warning-archetypes-default_huf35fdeb2ef099dd42dbf456dbfd2e1d1_154301_0750df2ea5b94a637316ea0760784f3a.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      A warning informs you to create a file with a specified text.
    &lt;/figcaption&gt;&lt;/figure&gt;
&lt;p&gt;Finally: Visit the final part of this tutorial to &lt;a href=&#34;https://notes.peter-baumgartner.net/2017/09/09/blogdown-tutorial-part-4/&#34;&gt;bring you website online&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;span class=&#39;Z3988&#39; title=&#39;url_ver=Z39.88-2004&amp;amp;ctx_ver=Z39.88-2004&amp;amp;rfr_id=info%3Asid%2Fzotero.org%3A2&amp;amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;amp;rft.type=blogPost&amp;amp;rft.title=Blogdown%20tutorial%20(Part%203)&amp;amp;rft.source=Thought%20splinters&amp;amp;rft.rights=CC%20BY-SA%204.0&amp;amp;rft.description=In%20part%203%20I%20will%20show%20the%20necessary%20steps%20to%20get%20a%20live%20preview%20of%20the%20website.&amp;amp;rft.identifier=https%3A%2F%2Fnotes.peter-baumgartner.net%2F2017%2F09%2F08%2Fblogdown-tutorial-part-3&amp;amp;rft.aufirst=Peter&amp;amp;rft.aulast=Baumgartner&amp;amp;rft.au=Peter%20Baumgartner&amp;amp;rft.date=2017-09-08&amp;amp;rft.language=en&#39;&gt;&lt;/span&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Blogdown tutorial (Part 1)</title>
      <link>https://notes.peter-baumgartner.net/2017/09/04/blogdown-tutorial-part-1/</link>
      <pubDate>Mon, 04 Sep 2017 00:00:00 +0000</pubDate>
      <guid>https://notes.peter-baumgartner.net/2017/09/04/blogdown-tutorial-part-1/</guid>
      <description>&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    &lt;p&gt;Update 2021-05-19: Even if some screenshots might have changed slightly, this part of the tutorial is &amp;ndash; with one exception (&lt;a href=&#34;#4-create-a-website-using-hugo-and-blogdown&#34;&gt;header 4&lt;/a&gt;) &amp;ndash; still up to date. But there are now many other resources with the same content available.&lt;/p&gt;
&lt;p&gt;Especially I would like to recommend &lt;a href=&#34;https://alison.rbind.io/post/new-year-new-blogdown/&#34;&gt;Up &amp;amp; running with blogdown in 2021&lt;/a&gt; by Allison Hill, co-author of the &lt;a href=&#34;https://bookdown.org/yihui/blogdown/&#34;&gt;blogdown book&lt;/a&gt;.&lt;/p&gt;
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;In this tutorial I will show how to install the R package &lt;code&gt;blogdown&lt;/code&gt; with the help of the new version of RStudio and how to link your local blogdown-directory to a remote repository on GitHub. But before we actually start with the installation procedure let us define the different ingredients (tools) we are going to use:&lt;/p&gt;



&lt;h2 id=&#34;tools-we-are-going-to-use&#34;&gt;Tools we are going to use&lt;a href=&#34;#tools-we-are-going-to-use&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&#34;https://bookdown.org/yihui/blogdown/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Blogdown&lt;/a&gt; is an R package for creating static websites with R Markdown.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.r-project.org/about.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;R&lt;/a&gt; is an integrated suite of open source software facilities for statistical computing and includes tools for data manipulation, calculation and graphical display.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.rstudio.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;RStudio&lt;/a&gt; is an integrated development environment (IDE) which sits on top of R and facilitates the use of R tremendously.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://rmarkdown.rstudio.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;R Markdown&lt;/a&gt; is a file format for making dynamic documents with R. It is based on Markdown (a lightweight markup language with plain text formatting syntax), but it also can contain chunks of embedded R code.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://gohugo.io/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hugo&lt;/a&gt; is a popular open-source static website generator.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://themes.gohugo.io/academic/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;hugo-academic&lt;/a&gt; is a theme designed for Hugo to create an academic or personal website. Besides special academic features like sections for publications, projects, teaching it also includes a blog section and supports multilingual usage.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;GitHub&lt;/a&gt; is an Internet hosting service for distributed version control repositories. Is is mainly used for source code management, but it works also with plain text markup languages. GitHub offers all the functionality of Git as well adding its own features.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://git-scm.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Git&lt;/a&gt; is a distributed version control system for tracking changes in computer files and coordinating work on those files among multiple people.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;All these tools are open source and free available.&lt;/p&gt;



&lt;h2 id=&#34;preliminary-preparations-installing-r-and-rstudio&#34;&gt;Preliminary preparations: Installing R and RStudio&lt;a href=&#34;#preliminary-preparations-installing-r-and-rstudio&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;There are many tutorials to install R and RStudio. See for instance the video &lt;a href=&#34;https://www.youtube.com/watch?v=cX532N_XLIs&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Installing R and RStudio&lt;/a&gt;. But at the moment the new version of RStudio which facilitates the installation procedure of blogdown is still not released as standard version. But you can use all these new features by &lt;a href=&#34;https://www.rstudio.com/products/rstudio/download/preview/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;downloading the preview release&lt;/a&gt;. As these features will be soon the standard version of RStudio I will explain the installation procedure using this upcoming version.&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;



&lt;h2 id=&#34;create-a-blogdown-website&#34;&gt;Create a blogdown website&lt;a href=&#34;#create-a-blogdown-website&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;



&lt;h3 id=&#34;create-a-new-project&#34;&gt;Create a new project&lt;a href=&#34;#create-a-new-project&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;After installing RStudio version greater than v.1.1.28 open the project menu and choose &amp;ldquo;New Project&amp;rdquo;. 













&lt;figure  id=&#34;figure-create-a-new-project&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Create a new project&#34; srcset=&#34;
               /2017/09/04/blogdown-tutorial-part-1/images/create-new-project_hufb6c84761f76a5b552863f6a6820f2a0_102756_c2b4839a84081670715f7fb46ec616e6.png 400w,
               /2017/09/04/blogdown-tutorial-part-1/images/create-new-project_hufb6c84761f76a5b552863f6a6820f2a0_102756_f963d05deef1f7e85f3d45fb9d31d7d5.png 760w,
               /2017/09/04/blogdown-tutorial-part-1/images/create-new-project_hufb6c84761f76a5b552863f6a6820f2a0_102756_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/04/blogdown-tutorial-part-1/images/create-new-project_hufb6c84761f76a5b552863f6a6820f2a0_102756_c2b4839a84081670715f7fb46ec616e6.png&#34;
               width=&#34;760&#34;
               height=&#34;466&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Create a new project
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;create-a-new-directory&#34;&gt;Create a new directory&lt;a href=&#34;#create-a-new-directory&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;A new window opens up: We are going to create a new local directory for our static blogdown website. Choose &amp;ldquo;New directory&amp;rdquo;. 













&lt;figure  id=&#34;figure-create-a-new-directory&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Create a new directory&#34; srcset=&#34;
               /2017/09/04/blogdown-tutorial-part-1/images/create-new-directory_hu3a7dba3750e733b56977d5d108e75f4e_34575_26eddbff22e94821ccd46a5c8df5efa3.png 400w,
               /2017/09/04/blogdown-tutorial-part-1/images/create-new-directory_hu3a7dba3750e733b56977d5d108e75f4e_34575_dc892b84b500dd7c2b61a619f1e776f1.png 760w,
               /2017/09/04/blogdown-tutorial-part-1/images/create-new-directory_hu3a7dba3750e733b56977d5d108e75f4e_34575_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/04/blogdown-tutorial-part-1/images/create-new-directory_hu3a7dba3750e733b56977d5d108e75f4e_34575_26eddbff22e94821ccd46a5c8df5efa3.png&#34;
               width=&#34;760&#34;
               height=&#34;541&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Create a new directory
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;create-a-website-using-blogdown&#34;&gt;Create a website using blogdown&lt;a href=&#34;#create-a-website-using-blogdown&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;The selection in the following window is self-explaining: &amp;ldquo;Website using blogdown&amp;rdquo;. Here it is the last line in the window. But in the future there may added other project types, so that you have to scroll down to see the blogdown-choice.













&lt;figure  id=&#34;figure-create-a-website-using-blogdown&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Create a website using blogdown&#34; srcset=&#34;
               /2017/09/04/blogdown-tutorial-part-1/images/create-website-using-blogdown_huf5b50ecdea95bfbe79a726f08545260b_21342_448512d03af8849d1956b586b1e39ba8.png 400w,
               /2017/09/04/blogdown-tutorial-part-1/images/create-website-using-blogdown_huf5b50ecdea95bfbe79a726f08545260b_21342_4ae0b15bda5b793de4150460488c36a9.png 760w,
               /2017/09/04/blogdown-tutorial-part-1/images/create-website-using-blogdown_huf5b50ecdea95bfbe79a726f08545260b_21342_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/04/blogdown-tutorial-part-1/images/create-website-using-blogdown_huf5b50ecdea95bfbe79a726f08545260b_21342_448512d03af8849d1956b586b1e39ba8.png&#34;
               width=&#34;760&#34;
               height=&#34;542&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Create a website using blogdown
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;create-a-website-using-hugo-and-blogdown&#34;&gt;Create a website using Hugo and blogdown&lt;a href=&#34;#create-a-website-using-hugo-and-blogdown&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;div class=&#34;alert alert-warning&#34;&gt;
  &lt;div&gt;
    Update 2021-05-19: The Academic theme is now modularized into &lt;a href=&#34;https://wowchemy.com/templates/&#34;&gt;different specialized templates&lt;/a&gt; and integrated into the development of the &lt;a href=&#34;https://wowchemy.com/&#34;&gt;web builder software wowchemy&lt;/a&gt;. To get the complete Academic theme, you have now to write into the Hugo theme field &amp;ldquo;wowchemy/starter-academic&amp;rdquo; (instead of &amp;ldquo;gcushen/hugo-academic&amp;rdquo;).
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Lastly we arrive at the final window we have to answer. Here you can choose the name and location of your local directory which will eventually collect all files of your static website. I recommend to leave all check boxes ticked, as this default value will give you the most support to generate the new website. The program for the static website generator Hugo will be installed automatically as well as sample blog posts will be added. Especially important is the possibility to look into the example site of the theme, because this will provide you with clues about the functionality of the theme. 













&lt;figure  id=&#34;figure-create-a-website-using-hugo-and-blogdown&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Create a website using Hugo and blogdown&#34; srcset=&#34;
               /2017/09/04/blogdown-tutorial-part-1/images/create-website-using-hugo-and-blogdown_hue4c03113cb6fb44eb8d528f3dd96aaee_35390_53f799c64d424d656c283bcdd4c87414.png 400w,
               /2017/09/04/blogdown-tutorial-part-1/images/create-website-using-hugo-and-blogdown_hue4c03113cb6fb44eb8d528f3dd96aaee_35390_56d91c592bef41fc3090ced73130110b.png 760w,
               /2017/09/04/blogdown-tutorial-part-1/images/create-website-using-hugo-and-blogdown_hue4c03113cb6fb44eb8d528f3dd96aaee_35390_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/04/blogdown-tutorial-part-1/images/create-website-using-hugo-and-blogdown_hue4c03113cb6fb44eb8d528f3dd96aaee_35390_53f799c64d424d656c283bcdd4c87414.png&#34;
               width=&#34;760&#34;
               height=&#34;543&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Create a website using Hugo and blogdown
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;choose-theme&#34;&gt;Choose theme&lt;a href=&#34;#choose-theme&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;I have chosen the hugo-academic theme. You can pick your own preferred webdesign via the &lt;a href=&#34;https://themes.gohugo.io/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hugo Themes&lt;/a&gt; page. 













&lt;figure  id=&#34;figure-huge-variety-of-hugo-themes-to-choose-from&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;Huge variety of Hugo themes to choose from. &#34; srcset=&#34;
               /2017/09/04/blogdown-tutorial-part-1/images/hugo-themes_hu4a9f012119f260847d4f1c792da93b81_398691_def2c5498a3f4cf6cdae34566f20659c.png 400w,
               /2017/09/04/blogdown-tutorial-part-1/images/hugo-themes_hu4a9f012119f260847d4f1c792da93b81_398691_6f2d1d4d7e39293b53e483bf77f7c467.png 760w,
               /2017/09/04/blogdown-tutorial-part-1/images/hugo-themes_hu4a9f012119f260847d4f1c792da93b81_398691_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/04/blogdown-tutorial-part-1/images/hugo-themes_hu4a9f012119f260847d4f1c792da93b81_398691_def2c5498a3f4cf6cdae34566f20659c.png&#34;
               width=&#34;760&#34;
               height=&#34;447&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      Huge variety of Hugo themes to choose from.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;choose-academic-now-wowchemy&#34;&gt;Choose Academic (now Wowchemy)&lt;a href=&#34;#choose-academic-now-wowchemy&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;In the &amp;ldquo;Hugo theme&amp;rdquo; field you have to insert the URL of the GitHub repository of the theme you would like to use. You will see the address when you click at the thumbnail of the theme and hover your cursor over the &amp;ldquo;Download&amp;rdquo;-button. 













&lt;figure  id=&#34;figure-hugo-academic-is-as-special-theme-for-personal-websites-in-academia&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;hugo-academic is as special theme for personal websites in academia. &#34; srcset=&#34;
               /2017/09/04/blogdown-tutorial-part-1/images/academic-theme_hud907f3bf6a224301ae94410178c77aab_184881_7e79fe409f38f54d94e8516b6c035d36.png 400w,
               /2017/09/04/blogdown-tutorial-part-1/images/academic-theme_hud907f3bf6a224301ae94410178c77aab_184881_91e55dc139b32b34f8b7f48cf0776c80.png 760w,
               /2017/09/04/blogdown-tutorial-part-1/images/academic-theme_hud907f3bf6a224301ae94410178c77aab_184881_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/04/blogdown-tutorial-part-1/images/academic-theme_hud907f3bf6a224301ae94410178c77aab_184881_7e79fe409f38f54d94e8516b6c035d36.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      hugo-academic is as special theme for personal websites in academia.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;github-repor-of-academic-theme&#34;&gt;GitHub repor of Academic theme&lt;a href=&#34;#github-repor-of-academic-theme&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;Clicking on the download button will bring up the developer&amp;rsquo;s repository. This is useful even for beginner as you can have a look of the ongoing discussion under the &amp;ldquo;issue&amp;rdquo; tab or to ask your own questions. Experienced users can fork the repository in order to adapt the functionality of the theme and/or to suggest code changes to the developer via the push mechanism. 













&lt;figure  id=&#34;figure-github-code-repository-of-the-hugo-academic-theme&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;GitHub code repository of the hugo-academic theme. &#34; srcset=&#34;
               /2017/09/04/blogdown-tutorial-part-1/images/github-gcushen-hugo-academic_hu1e6be0c76b5e247b4f6446af73223256_132907_21ad73d7d90f0843848a7d330ca4046f.png 400w,
               /2017/09/04/blogdown-tutorial-part-1/images/github-gcushen-hugo-academic_hu1e6be0c76b5e247b4f6446af73223256_132907_a9920c5d0fe5b4d6f2dec6fb9d5a72b5.png 760w,
               /2017/09/04/blogdown-tutorial-part-1/images/github-gcushen-hugo-academic_hu1e6be0c76b5e247b4f6446af73223256_132907_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/04/blogdown-tutorial-part-1/images/github-gcushen-hugo-academic_hu1e6be0c76b5e247b4f6446af73223256_132907_21ad73d7d90f0843848a7d330ca4046f.png&#34;
               width=&#34;760&#34;
               height=&#34;475&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      GitHub code repository of the hugo-academic theme.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h3 id=&#34;create-project&#34;&gt;Create project&lt;a href=&#34;#create-project&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h3&gt;
&lt;p&gt;When you finally click the &amp;ldquo;Create Project&amp;rdquo; button you have to wait few seconds until the selected theme is downloaded and Hugo installed. After the installation is finished RStudio opens up a four pane view. We will go more into the details of these different windows in the third part of this tutorial. 













&lt;figure  id=&#34;figure-rstudios-four-pane-view-immediately-after-installation&#34;&gt;
  &lt;div class=&#34;d-flex justify-content-center&#34;&gt;
    &lt;div class=&#34;w-100&#34; &gt;
        &lt;img alt=&#34;RStudio&amp;#39;s four pane view immediately after installation. &#34; srcset=&#34;
               /2017/09/04/blogdown-tutorial-part-1/images/four-pane-view-after-installation_hu493471b1e3bf66c0242f96339ab8178d_184845_9f15cb901c7c042db902f3558544ab48.png 400w,
               /2017/09/04/blogdown-tutorial-part-1/images/four-pane-view-after-installation_hu493471b1e3bf66c0242f96339ab8178d_184845_d689a39c8f948f4198597cfe37a1c31b.png 760w,
               /2017/09/04/blogdown-tutorial-part-1/images/four-pane-view-after-installation_hu493471b1e3bf66c0242f96339ab8178d_184845_1200x1200_fit_lanczos_2.png 1200w&#34;
               src=&#34;https://notes.peter-baumgartner.net/2017/09/04/blogdown-tutorial-part-1/images/four-pane-view-after-installation_hu493471b1e3bf66c0242f96339ab8178d_184845_9f15cb901c7c042db902f3558544ab48.png&#34;
               width=&#34;760&#34;
               height=&#34;466&#34;
               loading=&#34;lazy&#34; data-zoomable /&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;figcaption data-pre=&#34;Figure&amp;nbsp;&#34; data-post=&#34;:&amp;nbsp;&#34; class=&#34;numbered&#34;&gt;
      RStudio&amp;rsquo;s four pane view immediately after installation.
    &lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;



&lt;h2 id=&#34;summary&#34;&gt;Summary&lt;a href=&#34;#summary&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;We have successfully installed the hugo-academic theme in a version controlled local directory. Essentially we could now start to personalize the website and/or write articles resp. posts. But we will continue the installation process with creating a remote GitHub repository which has to be linked to the just created local repository. The remote repository not only operates as backup and as distributed version control (allowing collaboration) but also enables &amp;ndash; beside a manual transfer via ftp &amp;ndash; additional ways of publishing your website. We will cover these possibilities in the following parts of this tutorial.&lt;/p&gt;
&lt;p&gt;Go and visit the second part &lt;a href=&#34;https://notes.peter-baumgartner.net/2017/09/05/blogdown-tutorial-part-2/&#34;&gt;Creating a GitHub Repository&lt;/a&gt; of this tutorial.&lt;/p&gt;
&lt;p&gt;&lt;span class=&#39;Z3988&#39; title=&#39;url_ver=Z39.88-2004&amp;amp;ctx_ver=Z39.88-2004&amp;amp;rfr_id=info%3Asid%2Fzotero.org%3A2&amp;amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;amp;rft.type=blogPost&amp;amp;rft.title=Blogdown%20tutorial%20(Part%201)&amp;amp;rft.source=Thought%20splinters&amp;amp;rft.rights=CC%20BY-SA%204.0&amp;amp;rft.description=Part%201%20of%20this%20tutorial%20explains%20how%20to%20install%20a%20Hugo%20theme%20on%20top%20of%20R,%20RStudio%20and%20blogdown.%20For%20this%20demonstration%20I%20will%20use%20the%20new%20(preview)%20version%20of%20RStudio%20as%20it%20facilitates%20the%20installation%20of%20Hugo%20and%20a%20theme.&amp;amp;rft.identifier=https%3A%2F%2Fnotes.peter-baumgartner.net%2F2017%2F09%2F04%2Fblogdown-tutorial-part-1&amp;amp;rft.aufirst=Peter&amp;amp;rft.aulast=Baumgartner&amp;amp;rft.au=Peter%20Baumgartner&amp;amp;rft.date=2017-09-04&amp;amp;rft.language=en&#39;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;section class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id=&#34;fn:1&#34; role=&#34;doc-endnote&#34;&gt;
&lt;p&gt;To use features supporting blogdown websites the RStudio version has to be higher than v1.1.28: As today (2017-09-04) the actual preview version is v1.1.353. &lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;
</description>
    </item>
    
  </channel>
</rss>
