Vincent Prouillet ec35d72b6f | 6 years ago | |
---|---|---|
ci | 7 years ago | |
completions | 6 years ago | |
components | 6 years ago | |
docs | 6 years ago | |
src | 6 years ago | |
sublime_syntaxes | 6 years ago | |
sublime_themes | 7 years ago | |
test_site | 6 years ago | |
.editorconfig | 8 years ago | |
.gitignore | 7 years ago | |
.gitmodules | 6 years ago | |
.travis.yml | 6 years ago | |
CHANGELOG.md | 6 years ago | |
Cargo.lock | 6 years ago | |
Cargo.toml | 6 years ago | |
LICENSE | 6 years ago | |
README.md | 6 years ago | |
appveyor.yml | 7 years ago | |
build.rs | 6 years ago | |
netlify.toml | 6 years ago |
An opinionated static site generator written in Rust.
Documentation is available on its site or
in the docs/content
folder of the repository.
As the documentation site is automatically built on commits to master, all development
should happen on the next
branch, unless it is fixing the current documentation.
If you want a feature added or modified, please open an issue to discuss it before doing a PR.
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/SublimeElmLanguageSupport
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
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.