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 3.0KB

7 years ago
7 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. An opinionated static site generator written in Rust.
  5. Documentation is available on [its site](https://www.getgutenberg.io/documentation/getting-started/installation/) or
  6. in the `docs/content` folder of the repository.
  7. ## Example sites
  8. - [vincent.is](https://vincent.is): https://gitlab.com/Keats/vincent.is
  9. - [code<future](http://www.codelessfuture.com/)
  10. - http://t-rex.tileserver.ch (https://github.com/pka/t-rex-website/)
  11. - [adrien.is](https://adrien.is): https://github.com/Fandekasp/fandekasp.github.io
  12. - [Philipp Oppermann's blog](https://os.phil-opp.com/): https://github.com/phil-opp/blog_os/tree/master/blog
  13. - [seventeencups](https://www.seventeencups.net): https://github.com/17cupsofcoffee/seventeencups.net
  14. - [j1m.net](https://j1m.net): https://gitlab.com/jwcampbell/j1mnet
  15. - [vaporsoft.net](http://vaporsoft.net): https://github.com/piedoom/vaporsoft
  16. ## Contributing
  17. As the documentation site is automatically built on commits to master, all development
  18. should happen on the `next` branch, unless it is fixing the current documentation.
  19. If you want a feature added or modified, please open an issue to discuss it before doing a PR.
  20. ### Adding syntax highlighting languages and themes
  21. #### Adding a syntax
  22. Syntax highlighting depends on submodules so ensure you load them first:
  23. ```bash
  24. $ git submodule update --init
  25. ```
  26. Gutenberg only works with syntaxes in the `.sublime-syntax` format. If your syntax
  27. is in `.tmLanguage` format, open it in Sublime Text and convert it to `sublime-syntax` by clicking on
  28. Tools > Developer > New Syntax from ... and put it at the root of `sublime_syntaxes`.
  29. You can also add a submodule to the repository of the wanted syntax:
  30. ```bash
  31. $ cd sublime_syntaxes
  32. $ git submodule add https://github.com/elm-community/Elm.tmLanguage.git
  33. ```
  34. Note that you can also only copy manually the updated syntax definition file but this means
  35. Gutenberg won't be able to automatically update it.
  36. You can check for any updates to the current packages by running:
  37. ```bash
  38. $ git submodule update --remote --merge
  39. ```
  40. And finally from the root of the components/rendering crate run the following command:
  41. ```bash
  42. $ cargo run --example generate_sublime synpack ../../sublime_syntaxes ../../sublime_syntaxes/newlines.packdump ../../sublime_syntaxes/nonewlines.packdump
  43. ```
  44. #### Adding a theme
  45. A gallery containing lots of themes is located at https://tmtheme-editor.herokuapp.com/#!/editor/theme/Agola%20Dark.
  46. More themes can be easily added to gutenberg, just make a PR with the wanted theme added in the `sublime_themes` directory
  47. and run the following command from the root of the components/rendering:
  48. ```bash
  49. $ cargo run --example generate_sublime themepack ../../sublime_themes ../../sublime_themes/all.themedump
  50. ```
  51. You should see the list of themes being added.