2016-12-11 06:05:03 +00:00
|
|
|
# Gutenberg
|
2017-03-23 11:00:39 +00:00
|
|
|
[![Build Status](https://travis-ci.org/Keats/gutenberg.svg?branch=master)](https://travis-ci.org/Keats/gutenberg)
|
|
|
|
[![Build status](https://ci.appveyor.com/api/projects/status/h4t9r6h5gom839q0/branch/master?svg=true)](https://ci.appveyor.com/project/Keats/gutenberg/branch/master)
|
2016-12-11 06:05:03 +00:00
|
|
|
|
2017-03-23 12:58:40 +00:00
|
|
|
An opinionated static site generator written in Rust.
|
2016-12-11 06:05:03 +00:00
|
|
|
|
2017-10-19 13:10:31 +00:00
|
|
|
Documentation is available on [its site](https://www.getgutenberg.io/documentation/getting-started/installation/) or
|
|
|
|
in the `docs/content` folder of the repository.
|
2017-03-30 04:15:55 +00:00
|
|
|
|
2017-03-24 15:24:49 +00:00
|
|
|
## Example sites
|
|
|
|
|
2017-03-24 15:25:15 +00:00
|
|
|
- [vincent.is](https://vincent.is): https://gitlab.com/Keats/vincent.is
|
2017-05-30 10:24:19 +00:00
|
|
|
- [code<future](http://www.codelessfuture.com/)
|
2017-07-16 01:56:03 +00:00
|
|
|
- http://t-rex.tileserver.ch (https://github.com/pka/t-rex-website/)
|
2017-07-24 11:38:31 +00:00
|
|
|
- [adrien.is](https://adrien.is): https://github.com/Fandekasp/fandekasp.github.io
|
|
|
|
- [Philipp Oppermann's blog](https://os.phil-opp.com/): https://github.com/phil-opp/blog_os/tree/master/blog
|
2017-10-02 12:45:00 +00:00
|
|
|
- [seventeencups](https://www.seventeencups.net): https://github.com/17cupsofcoffee/seventeencups.net
|
2017-11-22 18:20:00 +00:00
|
|
|
- [j1m.net](https://j1m.net): https://gitlab.com/jwcampbell/j1mnet
|
2017-04-21 07:21:44 +00:00
|
|
|
|
2017-11-01 15:31:58 +00:00
|
|
|
## Contributing
|
|
|
|
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.
|
2017-05-30 10:23:07 +00:00
|
|
|
|
2017-11-01 15:31:58 +00:00
|
|
|
If you want a feature added or modified, please open an issue to discuss it before doing a PR.
|
|
|
|
|
|
|
|
### Adding syntax highlighting languages and themes
|
|
|
|
|
|
|
|
#### Adding a syntax
|
2017-04-21 07:21:44 +00:00
|
|
|
Syntax highlighting depends on submodules so ensure you load them first:
|
2017-10-03 15:21:18 +00:00
|
|
|
|
2017-04-21 07:21:44 +00:00
|
|
|
```bash
|
|
|
|
$ git submodule update --init
|
|
|
|
```
|
2017-10-03 15:21:18 +00:00
|
|
|
|
2017-04-21 07:21:44 +00:00
|
|
|
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:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ 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.
|
|
|
|
|
2017-04-22 01:46:38 +00:00
|
|
|
You can check for any updates to the current packages by running:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ git submodule update --remote --merge
|
|
|
|
```
|
|
|
|
|
2017-08-10 00:14:48 +00:00
|
|
|
And finally from the root of the components/rendering crate run the following command:
|
2017-04-21 07:21:44 +00:00
|
|
|
|
|
|
|
```bash
|
2017-08-10 00:14:48 +00:00
|
|
|
$ cargo run --example generate_sublime synpack ../../sublime_syntaxes ../../sublime_syntaxes/newlines.packdump ../../sublime_syntaxes/nonewlines.packdump
|
2017-04-21 07:21:44 +00:00
|
|
|
```
|
|
|
|
|
2017-11-01 15:31:58 +00:00
|
|
|
#### Adding a theme
|
2017-10-20 05:42:01 +00:00
|
|
|
A gallery containing lots of themes is located at https://tmtheme-editor.herokuapp.com/#!/editor/theme/Agola%20Dark.
|
2017-04-21 07:21:44 +00:00
|
|
|
More themes can be easily added to gutenberg, just make a PR with the wanted theme added in the `sublime_themes` directory
|
2017-08-10 00:14:48 +00:00
|
|
|
and run the following command from the root of the components/rendering:
|
2017-04-21 07:21:44 +00:00
|
|
|
|
|
|
|
```bash
|
2017-08-10 00:14:48 +00:00
|
|
|
$ cargo run --example generate_sublime themepack ../../sublime_themes ../../sublime_themes/all.themedump
|
2017-04-21 07:21:44 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
You should see the list of themes being added.
|