Go to file
2017-10-23 14:18:05 +02:00
ci Improve sorting speed 2017-07-04 18:33:58 +09:00
completions Update completions 2017-10-20 10:44:14 +02:00
components Handle markdown parser potentially splitting shortcodes 2017-10-23 14:18:05 +02:00
docs Handle markdown parser potentially splitting shortcodes 2017-10-23 14:18:05 +02:00
src Forgot to let base-url take a value >_> 2017-10-17 11:47:30 +02:00
sublime_syntaxes Add more syntaxes 2017-10-17 09:23:17 +02:00
sublime_themes Add 1337 color scheme 2017-10-03 23:23:58 +09:00
.editorconfig Create new project 2016-12-06 14:51:33 +09:00
.gitignore WIP site 2017-09-08 18:59:51 +09:00
.gitmodules Add GenericConfig and VimL syntaxes 2017-05-01 14:44:45 +09:00
.travis.yml Try to make windows work + remove musl 2017-04-05 20:31:10 +09:00
appveyor.yml Sass works on windows; try to use msvc on appveyor 2017-07-13 22:45:31 +09:00
build.rs Disable build.rs now that completions files are built 2017-07-16 10:19:18 +09:00
Cargo.lock Do not ignore shortcodes without args 2017-10-23 10:49:23 +02:00
Cargo.toml Releasing 0.2.1 2017-10-17 11:44:06 +02:00
CHANGELOG.md Handle markdown parser potentially splitting shortcodes 2017-10-23 14:18:05 +02:00
LICENSE Forgot License 2017-03-30 15:35:04 +09:00
netlify.toml Finishing up site (#131) 2017-10-19 13:48:50 +02:00
README.md Fix minor run-on sentence 2017-10-19 22:42:01 -07:00

Gutenberg

Build Status Build status

An opinionated static site generator written in Rust.

Documentation is available on its site or in the docs/content folder of the repository.

Example sites

Adding syntax highlighting languages and themes

Adding a syntax

Syntax highlighting depends on submodules so ensure you load them first:

$ git submodule update --init 

Gutenberg only works with syntaxes in the .sublime-syntax format. If your syntax is in .tmLanguage format, open it in Sublime Text and convert it to sublime-syntax by clicking on Tools > Developer > New Syntax from ... and put it at the root of sublime_syntaxes.

You can also add a submodule to the repository of the wanted syntax:

$ cd sublime_syntaxes
$ git submodule add https://github.com/elm-community/Elm.tmLanguage.git

Note that you can also only copy manually the updated syntax definition file but this means Gutenberg won't be able to automatically update it.

You can check for any updates to the current packages by running:

$ git submodule update --remote --merge

And finally from the root of the components/rendering crate run the following command:

$ cargo run --example generate_sublime synpack ../../sublime_syntaxes ../../sublime_syntaxes/newlines.packdump ../../sublime_syntaxes/nonewlines.packdump

Adding a theme

A gallery containing lots of themes is located at https://tmtheme-editor.herokuapp.com/#!/editor/theme/Agola%20Dark. More themes can be easily added to gutenberg, just make a PR with the wanted theme added in the sublime_themes directory and run the following command from the root of the components/rendering:

$ cargo run --example generate_sublime themepack ../../sublime_themes ../../sublime_themes/all.themedump

You should see the list of themes being added.