rename .Rmd to .Rmarkdown and add the build script
authorYihui Xie <xie@yihui.name>
Wed, 9 Aug 2017 16:37:42 +0000 (11:37 -0500)
committerYihui Xie <xie@yihui.name>
Wed, 9 Aug 2017 16:40:31 +0000 (11:40 -0500)
README.md
exampleSite/R/build.R [new file with mode: 0644]
exampleSite/config.toml
exampleSite/content/_index.Rmarkdown [new file with mode: 0644]
exampleSite/content/_index.markdown [new file with mode: 0644]
exampleSite/content/_index.md [deleted file]

index 83ea056633a97ee31ef405209dc27282f57fa451..0dd8a3d898676f1e2e609af04d5ed7265357fb8d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -17,10 +17,10 @@ find . -not -path '*/exampleSite/*' \( -name '*.html' -o -name '*.css' \) | xarg
        0 ./layouts/partials/foot_custom.html
        9 ./layouts/partials/footer.html
        0 ./layouts/partials/head_custom.html
-      19 ./layouts/partials/header.html
+      20 ./layouts/partials/header.html
        7 ./static/css/fonts.css
       50 ./static/css/style.css
-     136 total
+     137 total
 ```
 
 I can certainly further reduce the code, for example, by eliminating the CSS, but I believe a tiny bit CSS can greatly improve readability. You cannot really find many CSS frameworks that only contain 50 lines of code.
diff --git a/exampleSite/R/build.R b/exampleSite/R/build.R
new file mode 100644 (file)
index 0000000..4747bd1
--- /dev/null
@@ -0,0 +1,6 @@
+file.copy('content/_index.markdown', '../README.md', overwrite = TRUE)
+system("sed -i '' -e '1,6d' -e '34,38d' ../README.md")
+cat(
+  '[![Screenshot](https://github.com/yihui/hugo-xmin/raw/master/images/screenshot.png)](https://xmin.yihui.name)\n',
+  file = '../README.md', append = TRUE
+)
index 534c96d955b541ce5f002c9e91c266e1abcf32eb..8441c4441e1fd44c8deda9bd73a930717746ac9d 100644 (file)
@@ -4,7 +4,7 @@ title = "A minimal Hugo website"
 theme = "hugo-xmin"
 googleAnalytics = ""
 disqusShortname = ""
-ignoreFiles = ["\\.Rmd$", "_files$", "_cache$"]
+ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
 preserveTaxonomyNames = true
 footnotereturnlinkcontents = "↩"
 
diff --git a/exampleSite/content/_index.Rmarkdown b/exampleSite/content/_index.Rmarkdown
new file mode 100644 (file)
index 0000000..4f58bee
--- /dev/null
@@ -0,0 +1,24 @@
+---
+title: Home
+---
+
+[<img src="https://simpleicons.org/icons/github.svg" style="max-width:15%;min-width:40px;float:right;" alt="Github repo" />](https://github.com/yihui/hugo-xmin)
+
+# HUGO XMIN
+
+## _Keep it simple, but not simpler_
+
+**XMin** is a Hugo theme written by [Yihui Xie](https://yihui.name) in about four hours: half an hour was spent on the Hugo templates, and 3.5 hours were spent on styling. The main motivation for writing this theme was to provide a really minimal example to beginners of Hugo templates. This XMin theme contains about 130 lines of code in total, including the code in HTML templates and CSS (also counting empty lines).
+
+```{bash, comment='', echo=2}
+cd ../..;
+find . -not -path '*/exampleSite/*' \( -name '*.html' -o -name '*.css' \) | xargs wc -l
+```
+
+I can certainly further reduce the code, for example, by eliminating the CSS, but I believe a tiny bit CSS can greatly improve readability. You cannot really find many CSS frameworks that only contain 50 lines of code.
+
+Although it is a minimal theme, it is actually fully functional. It supports pages (including the home page), blog posts, a navigation menu, categories, tags, and RSS. With [a little bit customization](https://github.com/yihui/hugo-xmin/blob/master/exampleSite/layouts/partials/foot_custom.html), it can easily support LaTeX math expressions, e.g.,
+
+`$${\sqrt {n}}\left(\left({\frac {1}{n}}\sum _{i=1}^{n}X_{i}\right)-\mu \right)\ {\xrightarrow {d}}\ N\left(0,\sigma ^{2}\right)$$`
+
+All pages not under the root directory of the website are listed below. You can also visit the list page of a single section, e.g., [posts](/post/), or [notes](/note/). See the [About](/about/) page for the usage of this theme.
diff --git a/exampleSite/content/_index.markdown b/exampleSite/content/_index.markdown
new file mode 100644 (file)
index 0000000..df0a22b
--- /dev/null
@@ -0,0 +1,38 @@
+---
+title: Home
+---
+
+[<img src="https://simpleicons.org/icons/github.svg" style="max-width:15%;min-width:40px;float:right;" alt="Github repo" />](https://github.com/yihui/hugo-xmin)
+
+# HUGO XMIN
+
+## _Keep it simple, but not simpler_
+
+**XMin** is a Hugo theme written by [Yihui Xie](https://yihui.name) in about four hours: half an hour was spent on the Hugo templates, and 3.5 hours were spent on styling. The main motivation for writing this theme was to provide a really minimal example to beginners of Hugo templates. This XMin theme contains about 130 lines of code in total, including the code in HTML templates and CSS (also counting empty lines).
+
+
+```bash
+find . -not -path '*/exampleSite/*' \( -name '*.html' -o -name '*.css' \) | xargs wc -l
+```
+
+```
+       5 ./layouts/404.html
+      18 ./layouts/_default/list.html
+      12 ./layouts/_default/single.html
+      16 ./layouts/_default/terms.html
+       0 ./layouts/partials/foot_custom.html
+       9 ./layouts/partials/footer.html
+       0 ./layouts/partials/head_custom.html
+      20 ./layouts/partials/header.html
+       7 ./static/css/fonts.css
+      50 ./static/css/style.css
+     137 total
+```
+
+I can certainly further reduce the code, for example, by eliminating the CSS, but I believe a tiny bit CSS can greatly improve readability. You cannot really find many CSS frameworks that only contain 50 lines of code.
+
+Although it is a minimal theme, it is actually fully functional. It supports pages (including the home page), blog posts, a navigation menu, categories, tags, and RSS. With [a little bit customization](https://github.com/yihui/hugo-xmin/blob/master/exampleSite/layouts/partials/foot_custom.html), it can easily support LaTeX math expressions, e.g.,
+
+`$${\sqrt {n}}\left(\left({\frac {1}{n}}\sum _{i=1}^{n}X_{i}\right)-\mu \right)\ {\xrightarrow {d}}\ N\left(0,\sigma ^{2}\right)$$`
+
+All pages not under the root directory of the website are listed below. You can also visit the list page of a single section, e.g., [posts](/post/), or [notes](/note/). See the [About](/about/) page for the usage of this theme.
diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md
deleted file mode 100644 (file)
index 3ba31b2..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
----
-title: Home
----
-
-[<img src="https://simpleicons.org/icons/github.svg" style="max-width:15%;min-width:40px;float:right;" alt="Github repo" />](https://github.com/yihui/hugo-xmin)
-
-# HUGO XMIN
-
-## _Keep it simple, but not simpler_
-
-**XMin** is a Hugo theme written by [Yihui Xie](https://yihui.name) in about four hours: half an hour was spent on the Hugo templates, and 3.5 hours were spent on styling. The main motivation for writing this theme was to provide a really minimal example to beginners of Hugo templates. This XMin theme contains about 130 lines of code in total, including the code in HTML templates and CSS (also counting empty lines).
-
-
-```bash
-find . -not -path '*/exampleSite/*' \( -name '*.html' -o -name '*.css' \) | xargs wc -l
-```
-
-```
-       5 ./layouts/404.html
-      18 ./layouts/_default/list.html
-      12 ./layouts/_default/single.html
-      16 ./layouts/_default/terms.html
-       0 ./layouts/partials/foot_custom.html
-       9 ./layouts/partials/footer.html
-       0 ./layouts/partials/head_custom.html
-      19 ./layouts/partials/header.html
-       7 ./static/css/fonts.css
-      50 ./static/css/style.css
-     136 total
-```
-
-I can certainly further reduce the code, for example, by eliminating the CSS, but I believe a tiny bit CSS can greatly improve readability. You cannot really find many CSS frameworks that only contain 50 lines of code.
-
-Although it is a minimal theme, it is actually fully functional. It supports pages (including the home page), blog posts, a navigation menu, categories, tags, and RSS. With [a little bit customization](https://github.com/yihui/hugo-xmin/blob/master/exampleSite/layouts/partials/foot_custom.html), it can easily support LaTeX math expressions, e.g.,
-
-`$${\sqrt {n}}\left(\left({\frac {1}{n}}\sum _{i=1}^{n}X_{i}\right)-\mu \right)\ {\xrightarrow {d}}\ N\left(0,\sigma ^{2}\right)$$`
-
-All pages not under the root directory of the website are listed below. You can also visit the list page of a single section, e.g., [posts](/post/), or [notes](/note/). See the [About](/about/) page for the usage of this theme.