You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 10KB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. # Gutenberg
  2. [![Build Status](https://travis-ci.org/Keats/gutenberg.svg?branch=master)](https://travis-ci.org/Keats/gutenberg)
  3. [![Build status](https://ci.appveyor.com/api/projects/status/h4t9r6h5gom839q0/branch/master?svg=true)](https://ci.appveyor.com/project/Keats/gutenberg/branch/master)
  4. [![Chat](https://img.shields.io/gitter/room/gitterHQ/gitter.svg)](https://gitter.im/gutenberg-rs/Lobby#)
  5. An opinionated static site generator written in Rust.
  6. ## Installation
  7. You can get the latest release by going to the [Release page](https://github.com/Keats/gutenberg/releases).
  8. Alternatively, if you have the rust toolchain on your computer, you can also install it
  9. through Cargo: `cargo install gutenberg`.
  10. ## Usage
  11. ### Creating a new site
  12. Use `gutenberg init <a_directory_name>`.
  13. This will create a folder with the name given and the base structure of a gutenberg site.
  14. ### Working on a site
  15. Use `gutenberg serve` to spin up a server that will automatically live reload any changes to the
  16. content, templates or static files.
  17. ### Building a site
  18. Use `gutenberg build` to generate the site in the `public/` directory.
  19. ### Gutenberg terms
  20. Some words are going to be repeated in the docs so let's make sure they are clear.
  21. - Page: a markdown file in the `content` directory that has a name different from `_index.md`
  22. - Section: a group of pages in the `content` directory that has `_index.md` in the same folder
  23. ### Configuration
  24. Configuration is using the [TOML](https://github.com/toml-lang/toml) language.
  25. Only 2 parameters are required: `title` and `base_url`.
  26. The other options are:
  27. - `highlight_code`: Whether to highlight all code blocks found in markdown files. Defaults to false
  28. - `highlight_theme`: Which themes to use for code highlighting. Defaults to "base16-ocean-dark"
  29. - `language_code`: The language used in the site. Defaults to "en"
  30. - `generate_rss`: Whether to generate RSS, defaults to false
  31. - `generate_tags_pages`: Whether to generate tags and individual tag pages if some pages have them. Defaults to true
  32. - `generate_categories_pages`: Whether to generate categories and individual category categories if some pages have them. Defaults to true
  33. If you want to add some of your own variables, you will need to put them in the `[extra]` table in `config.toml` or
  34. they will be silently ignored.
  35. ### Templates
  36. Templates live in the `templates/` directory.
  37. Only [Tera](https://github.com/Keats/tera) templates are supported.
  38. Each kind of page get their own variables:
  39. // TODO: detail the schema of the variables
  40. - index.html: gets `pages` that contain all pages in the site
  41. - page.html: gets `page` that contains the data for that page
  42. - section.html: gets `section` that contains the data for pages in it and its subsections
  43. - tags.html: gets `tags`
  44. - tag.html: gets `tag` and `pages`
  45. - categories.html: gets `categories`
  46. - category.html: gets `category` and `pages`
  47. Additionally, all pages get a `config` variable representing the data in `config.toml`, `current_url` that represent
  48. the absolute URL of the current page and `current_path` that represents the path of the URL of the current page, starting with `/`.
  49. If you want to know all the data present in a template content, simply put `{{ __tera_context }}`
  50. in the templates and it will print it.
  51. ### Static files
  52. Everything in the `static` folder will be copied into the output directory as-is.
  53. ### Pages
  54. Pages have to start with a front-matter enclosed in `+++`. Here is a minimal example:
  55. ```md
  56. +++
  57. title = "My page"
  58. description = "Some meta info"
  59. +++
  60. A simple page with fixed url
  61. ```
  62. A front-matter requires a title, a description and has the following optional variables:
  63. - date: a YYYY-MM-DD or RFC339 formatted date
  64. - slug: what slug to use in the url
  65. - url: this overrides the slug and make this page accessible at `{config.base_url}/{url}`
  66. - tags: an array of strings
  67. - category: only one category is allowed
  68. - draft: whether the post is a draft or not
  69. - template: if you want to change the template used to render that specific page
  70. You can also, like in the config, add your own variables in a `[extra]` table.
  71. The front-matter will be accessible in templates at the `page.meta` field.
  72. By default, the URL of a page will follow the filesystem paths. For example, if you have
  73. a page at `content/posts/python3.md`, it will be available at `{config.base_url}/posts/python3/`.
  74. You can override the slug created from the filename by setting the `slug` variable in the front-matter.
  75. Quite often, a page will have assets and you might want to co-locate them with the markdown file.
  76. Gutenberg supports that pattern out of the box: you can create a folder, put a file named `index.md` and any number of files
  77. along with it that are NOT markdown.
  78. Those assets will be copied in the same folder when building so you can just use a relative path to use them.
  79. A summary is only defined if you put `<!-- more -->` in the content. If present in a page, the summary will be from
  80. the start up to that tag.s
  81. ### Sections
  82. Sections represent a group of pages, for example a `tutorials` section of your site.
  83. Sections are only created in Gutenberg when a file named `_index.md` is found in the `content` directory.
  84. This `_index.md` file needs to include a front-matter as well, but won't have content:
  85. ```md
  86. +++
  87. title = "Tutorials"
  88. description = ""
  89. +++
  90. ```
  91. Both `title` and `description` are mandatory, you can also set the `template` variable to change
  92. which template will be used to render that section.
  93. Sections will also automatically pick up their subsections, allowing you to make some complex pages layout and
  94. table of contents.
  95. ### Code highlighting themes
  96. Code highlighting can be turned on by setting `highlight_code = true` in `config.toml`.
  97. When turned on, all text between backticks will be highlighted, like the example below.
  98. ```rust
  99. let site = Site::new();
  100. ```
  101. If the name of the language is not given, it will default to plain-text highlighting.
  102. Gutenberg uses Sublime Text themes for syntax highlighting. It comes with the following theme
  103. built-in:
  104. - base16-ocean-dark
  105. - base16-ocean-light
  106. - gruvbox-dark
  107. - gruvbox-light
  108. - inspired-github
  109. - kronuz
  110. - material-dark
  111. - material-light
  112. - monokai
  113. - solarized-dark
  114. - solarized-light
  115. ### Internal links
  116. You can have internal links in your markdown that will be replaced with the full URL when rendering.
  117. To do so, use the normal markdown link syntax, start the link with `./` and point to the `.md` file you want
  118. to link to. The path to the file starts from the `content` directory.
  119. For example, linking to a file located at `content/pages/about.md` would be `[my link](./pages/about.md).
  120. ### Anchors
  121. Headers get an automatic id from their content in order to be able to add deep links. By default no links are actually created but
  122. the `insert_anchor_links` option in `config.toml` can be set to `true` to link tags. The default template is very ugly and will need
  123. CSS tweaks in your projet to look decent. The default template can also be easily overwritten by creating a `anchor-link.html` file in
  124. the `templates` directory.
  125. ### Shortcodes
  126. Gutenberg uses markdown for content but sometimes you want to insert some HTML, for example for a YouTube video.
  127. Rather than copy/pasting the HTML around, Gutenberg supports shortcodes, allowing you to define templates using Tera and call those templates inside markdown.
  128. #### Using a shortcode
  129. There are 2 kinds of shortcodes: simple ones and those that take some content as body. All shortcodes need to be preceded by a blank line or they
  130. will be contained in a paragraph.
  131. Simple shortcodes are called the following way:
  132. ```markdown
  133. {{ youtube(id="my_youtube_id") }}
  134. ```
  135. Shortcodes with a body are called like so:
  136. ```markdown
  137. {% quote(author="Me", link="https://google.com") %}
  138. My quote
  139. {% end %}
  140. ```
  141. The shortcodes names are taken from the files they are defined in, for example a shortcode with the name youtube will try to render
  142. the template at `templates/shortcodes/youtube.html`.
  143. #### Built-in shortcodes
  144. Gutenberg comes with a few built-in shortcodes:
  145. - YouTube: embeds a YouTube player for the given YouTube `id`. Also takes an optional `autoplay` argument that can be set to `true`
  146. if wanted
  147. - Vimeo: embeds a Vimeo player for the given Vimeo `id`
  148. - Gist: embeds a Github gist from the `url` given. Also takes an optional `file` argument if you only want to show one of the files.
  149. #### Defining a shortcode
  150. All shortcodes need to be in the `templates/shortcodes` folder and their files to end with `.html`.
  151. Shortcodes templates are simple Tera templates, with all the args being directly accessible in the template.
  152. In case of shortcodes with a body, the body will be passed as the `body` variable.
  153. ## Example sites
  154. - [vincent.is](https://vincent.is): https://gitlab.com/Keats/vincent.is
  155. ## Adding syntax highlighting languages and themes
  156. ### Adding a syntax
  157. Syntax highlighting depends on submodules so ensure you load them first:
  158. ```bash
  159. $ git submodule update --init
  160. ```
  161. Gutenberg only works with syntaxes in the `.sublime-syntax` format. If your syntax
  162. is in `.tmLanguage` format, open it in Sublime Text and convert it to `sublime-syntax` by clicking on
  163. Tools > Developer > New Syntax from ... and put it at the root of `sublime_syntaxes`.
  164. You can also add a submodule to the repository of the wanted syntax:
  165. ```bash
  166. $ cd sublime_syntaxes
  167. $ git submodule add https://github.com/elm-community/Elm.tmLanguage.git
  168. ```
  169. Note that you can also only copy manually the updated syntax definition file but this means
  170. Gutenberg won't be able to automatically update it.
  171. You can check for any updates to the current packages by running:
  172. ```bash
  173. $ git submodule update --remote --merge
  174. ```
  175. And finally from the root of the repository run the following command:
  176. ```bash
  177. $ cargo run --example generate_sublime synpack sublime_syntaxes sublime_syntaxes/newlines.packdump sublime_syntaxes/nonewlines.packdump
  178. ```
  179. ### Adding a theme
  180. A gallery containing lots of themes at https://tmtheme-editor.herokuapp.com/#!/editor/theme/Agola%20Dark.
  181. More themes can be easily added to gutenberg, just make a PR with the wanted theme added in the `sublime_themes` directory
  182. and run the following command from the repository root:
  183. ```bash
  184. $ cargo run --example generate_sublime themepack sublime_themes sublime_themes/all.themedump
  185. ```
  186. You should see the list of themes being added.