YOUR TITLE HERE
96 | 97 |2020-08-10
98 |├── 02-tears.Rmd ├── 03-race.Rmd ├── .gitattributes ├── .gitignore ├── docs ├── libs │ └── gitbook-2.6.7 │ │ ├── css │ │ ├── fontawesome │ │ │ └── fontawesome-webfont.ttf │ │ ├── plugin-clipboard.css │ │ ├── plugin-table.css │ │ ├── plugin-search.css │ │ ├── plugin-bookdown.css │ │ ├── plugin-fontsettings.css │ │ ├── plugin-highlight.css │ │ └── style.css │ │ └── js │ │ ├── plugin-clipboard.js │ │ ├── jquery.highlight.js │ │ ├── plugin-sharing.js │ │ ├── plugin-fontsettings.js │ │ ├── plugin-search.js │ │ ├── plugin-bookdown.js │ │ ├── clipboard.min.js │ │ └── lunr.js ├── style.css ├── search_index.json ├── index.html ├── a-caucus-race-and-a-long-tale.html └── the-pool-of-tears.html ├── index.Rmd ├── style.css ├── _output.yml ├── _bookdown.yml ├── LICENSE └── README.md /02-tears.Rmd: -------------------------------------------------------------------------------- 1 | # The pool of tears 2 | 3 | -------------------------------------------------------------------------------- /03-race.Rmd: -------------------------------------------------------------------------------- 1 | # A caucus-race and a long tale 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.css linguist-detectable=false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | .RData 3 | .Rproj.user 4 | *.Rproj 5 | _bookdown_files/ 6 | -------------------------------------------------------------------------------- /docs/libs/gitbook-2.6.7/css/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtr13/bookdown-template/HEAD/docs/libs/gitbook-2.6.7/css/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "YOUR TITLE HERE" 3 | author: "YOUR NAME HERE" 4 | date: "`r Sys.Date()`" 5 | site: bookdown::bookdown_site 6 | --- 7 | 8 | # Down the rabbit-hole 9 | 10 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | p.caption { 2 | color: #777; 3 | margin-top: 10px; 4 | } 5 | p code { 6 | white-space: inherit; 7 | } 8 | pre { 9 | word-break: normal; 10 | word-wrap: normal; 11 | } 12 | pre code { 13 | white-space: inherit; 14 | } 15 | -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- 1 | p.caption { 2 | color: #777; 3 | margin-top: 10px; 4 | } 5 | p code { 6 | white-space: inherit; 7 | } 8 | pre { 9 | word-break: normal; 10 | word-wrap: normal; 11 | } 12 | pre code { 13 | white-space: inherit; 14 | } 15 | -------------------------------------------------------------------------------- /_output.yml: -------------------------------------------------------------------------------- 1 | bookdown::gitbook: 2 | css: style.css 3 | config: 4 | toc: 5 | before: | 6 |