From a1aa7cb4c55c8fc39d1265b1a5772dedd497849f Mon Sep 17 00:00:00 2001 From: Chris <11088935+caemor@users.noreply.github.com> Date: Mon, 19 Nov 2018 16:34:39 +0100 Subject: [PATCH 01/15] Updated install instructions I updated the install instructions (snap, scoop, chocolatey) and added the ones where Gutenberg already got renamed to Zola also to the top of the document. Should yaourt be replaced by one of the other aur-helpers (pikaur, yay,...) as the development for it is stalled/discontinued for quite some time now although it is still working? Scoop: https://github.com/lukesampson/scoop/blob/master/bucket/zola.json Chocolatey: https://chocolatey.org/packages/zola Snap: https://snapcraft.io/zola --- .../getting-started/installation.md | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/docs/content/documentation/getting-started/installation.md b/docs/content/documentation/getting-started/installation.md index 8d1c9ab4..256f2f19 100644 --- a/docs/content/documentation/getting-started/installation.md +++ b/docs/content/documentation/getting-started/installation.md @@ -6,6 +6,8 @@ weight = 1 Zola provides pre-built binaries for MacOS, Linux and Windows on the [GitHub release page](https://github.com/getzola/zola/releases). +## Linux + ## Arch Linux Use your favourite AUR helper to install the `zola-bin` package. @@ -14,6 +16,28 @@ Use your favourite AUR helper to install the `zola-bin` package. $ yaourt -S zola-bin ``` +### Snapcraft + +Zola is available on snapcraft: + +```bash +$ snap install --edge zola +``` + +## Windows + +Zola is available on [Scoop](http://scoop.sh): + +```bash +$ scoop install zola +``` + +And [Chocolatey](https://chocolatey.org/): + +```bash +$ choco install zola +``` + ## From source To build it from source, you will need to have Git, [Rust (at least 1.28) and Cargo](https://www.rust-lang.org/) installed. You will also need additional dependencies to compile [libsass](https://github.com/sass/libsass): From cec89dea9478d255d583c752121e37e831eb11ea Mon Sep 17 00:00:00 2001 From: Chris <11088935+caemor@users.noreply.github.com> Date: Mon, 19 Nov 2018 16:36:07 +0100 Subject: [PATCH 02/15] Fixed wrong heading Changed arch linux from h2 to h3 --- docs/content/documentation/getting-started/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/documentation/getting-started/installation.md b/docs/content/documentation/getting-started/installation.md index 256f2f19..24616827 100644 --- a/docs/content/documentation/getting-started/installation.md +++ b/docs/content/documentation/getting-started/installation.md @@ -8,7 +8,7 @@ Zola provides pre-built binaries for MacOS, Linux and Windows on the ## Linux -## Arch Linux +### Arch Linux Use your favourite AUR helper to install the `zola-bin` package. From 34da6fdffdda60603ec204710c09ff932b0e8bed Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Mon, 19 Nov 2018 17:27:15 +0100 Subject: [PATCH 03/15] yaourt -> yay --- docs/content/documentation/getting-started/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/documentation/getting-started/installation.md b/docs/content/documentation/getting-started/installation.md index 24616827..fc9844de 100644 --- a/docs/content/documentation/getting-started/installation.md +++ b/docs/content/documentation/getting-started/installation.md @@ -13,7 +13,7 @@ Zola provides pre-built binaries for MacOS, Linux and Windows on the Use your favourite AUR helper to install the `zola-bin` package. ```bash -$ yaourt -S zola-bin +$ yay -S zola-bin ``` ### Snapcraft From a07611d9981ea1840dbf95ddb66ff3ebe5d888ad Mon Sep 17 00:00:00 2001 From: Andreas Reiser Date: Thu, 22 Nov 2018 17:49:29 +0100 Subject: [PATCH 04/15] Add instructions on how to deploy to GitLab pages --- .../documentation/deployment/gitlab-pages.md | 69 +++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 docs/content/documentation/deployment/gitlab-pages.md diff --git a/docs/content/documentation/deployment/gitlab-pages.md b/docs/content/documentation/deployment/gitlab-pages.md new file mode 100644 index 00000000..77b0a7cd --- /dev/null +++ b/docs/content/documentation/deployment/gitlab-pages.md @@ -0,0 +1,69 @@ + +++ +title = "GitLab Pages" +weight = 30 ++++ + +We are going to use the GitLab CI runner to automatically publish the site (this CI runner is already included in your repository if you use GitLab.com). + +## Repository setup + +Your repository needs to be set up to be a user or group website. This means the name of the repository has to be in the correct format. + +For example, under your username, `john`, you have to create a project called `john.gitlab.io`. Your project URL will be `https://gitlab.com/john/john.gitlab.io`. Once you enable GitLab Pages for your project, your website will be published under `https://john.gitlab.io`. + +Under your group `websites`, you created a project called `websites.gitlab.io`. Your project’s URL will be `https://gitlab.com/websites/websites.gitlab.io`. Once you enable GitLab Pages for your project, your website will be published under `https://websites.gitlab.io`. + + +This guide assumes that your zola project is located in the root of your repository. + +## Ensuring that the CI runner can access your theme + +Depending on how you added your theme your repository may not contain it. The best way to ensure the theme will be added is to use +submodules. When doing this ensure you are using the `https` version of the URL. + +```shell +$ git submodule add {THEME_URL} themes/{THEME_NAME} +``` + +For example, this could look like +```shell +$ git submodule add https://github.com/getzola/hyde.git themes/hyde +``` + +## Setting up the GitLab CI/CD Runner + +The second step is to tell the gitlab continous integration runner how to create the gitlab page. + +To do this, create a file called `.gitlab-ci.yml` in the root directory of your repository. + +```yaml +variables: + # This variable will ensure that the CI runner pulls in your theme from the submodule + GIT_SUBMODULE_STRATEGY: recursive + +pages: + script: + # Download the zola executable and store it in zola.tar.gz + - curl -L https://github.com/getzola/zola/releases/download/v0.5.0/zola-v0.5.0-x86_64-unknown-linux-gnu.tar.gz > zola.tar.gz + # Unpack the zola executable + - tar -xzf zola.tar.gz + # Execute zola build + - ./zola build + + artifacts: + paths: + # Path of our artifacts + - public + + # This config will only publish changes that are pushed on the master branch + only: + - master +``` + +Push this new file and... Tada! You're done! If you navigate to `settings > pages` you should be able to see something like this: + +> Congratulations! Your pages are served under: +https://john.gitlab.io + +More information on the process to host on GitLab pages and additional information like using a custom domain is documented +[in this GitLab blog post](https://about.gitlab.com/2016/04/07/gitlab-pages-setup/). From 644e53a3fd6ed97a9ffec8446980831e4a5d0b67 Mon Sep 17 00:00:00 2001 From: Andreas Reiser Date: Thu, 22 Nov 2018 19:25:34 +0100 Subject: [PATCH 05/15] Extract zola version to a variable --- docs/content/documentation/deployment/gitlab-pages.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/content/documentation/deployment/gitlab-pages.md b/docs/content/documentation/deployment/gitlab-pages.md index 77b0a7cd..73bb2b05 100644 --- a/docs/content/documentation/deployment/gitlab-pages.md +++ b/docs/content/documentation/deployment/gitlab-pages.md @@ -39,12 +39,14 @@ To do this, create a file called `.gitlab-ci.yml` in the root directory of your ```yaml variables: # This variable will ensure that the CI runner pulls in your theme from the submodule - GIT_SUBMODULE_STRATEGY: recursive + GIT_SUBMODULE_STRATEGY: recursive + # Specify the zola version you want to use here + ZOLA_VERSION: "v0.5.0" pages: script: # Download the zola executable and store it in zola.tar.gz - - curl -L https://github.com/getzola/zola/releases/download/v0.5.0/zola-v0.5.0-x86_64-unknown-linux-gnu.tar.gz > zola.tar.gz + - curl -L https://github.com/getzola/zola/releases/download/$ZOLA_VERSION/zola-$ZOLA_VERSION-x86_64-unknown-linux-gnu.tar.gz > zola.tar.gz # Unpack the zola executable - tar -xzf zola.tar.gz # Execute zola build From dd10f5d75adb5b4763c03ef477ced2db30b9d470 Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Fri, 23 Nov 2018 18:25:19 +0100 Subject: [PATCH 06/15] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 91740cb5..cb84cab4 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A fast static site generator in a single binary with everything built-in. Documentation is available on [its site](https://www.getzola.org/documentation/getting-started/installation/) or -in the `docs/content` folder of the repository. +in the `docs/content` folder of the repository and the community can use [its forum](https://zola.discourse.group). ## Comparisons with other static site generators From 5fd7bf7e61c87320b1c5a9f358df2d82525ea465 Mon Sep 17 00:00:00 2001 From: "Bob \"Wombat\" Hogg" Date: Wed, 28 Nov 2018 22:16:40 -0700 Subject: [PATCH 07/15] Update snap installation instructions If you don't install with classic confinement, you'll get permission errors trying to create sites with `zola init`. --- docs/content/documentation/getting-started/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/documentation/getting-started/installation.md b/docs/content/documentation/getting-started/installation.md index fc9844de..71795a10 100644 --- a/docs/content/documentation/getting-started/installation.md +++ b/docs/content/documentation/getting-started/installation.md @@ -21,7 +21,7 @@ $ yay -S zola-bin Zola is available on snapcraft: ```bash -$ snap install --edge zola +$ snap install --edge --classic zola ``` ## Windows From a6ec2b65c795aaa4845b415dcd30da0ba66b17ad Mon Sep 17 00:00:00 2001 From: Igor Kapkov Date: Tue, 20 Nov 2018 09:46:49 +1100 Subject: [PATCH 08/15] Update brew docs --- .../content/documentation/getting-started/installation.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/content/documentation/getting-started/installation.md b/docs/content/documentation/getting-started/installation.md index 71795a10..d6d0f240 100644 --- a/docs/content/documentation/getting-started/installation.md +++ b/docs/content/documentation/getting-started/installation.md @@ -6,6 +6,14 @@ weight = 1 Zola provides pre-built binaries for MacOS, Linux and Windows on the [GitHub release page](https://github.com/getzola/zola/releases). +### macOS + +Zola is available on [Brew](https://brew.sh): + +```bash +$ brew install zola +``` + ## Linux ### Arch Linux From fb4c56208802f51354fd7ed67f29ac95b1c1ec6c Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Fri, 30 Nov 2018 22:23:18 +0100 Subject: [PATCH 09/15] Removing gutenberg completely from installation instructions --- .../getting-started/installation.md | 43 ------------------- 1 file changed, 43 deletions(-) diff --git a/docs/content/documentation/getting-started/installation.md b/docs/content/documentation/getting-started/installation.md index d6d0f240..505744ed 100644 --- a/docs/content/documentation/getting-started/installation.md +++ b/docs/content/documentation/getting-started/installation.md @@ -62,46 +62,3 @@ $ cargo build --release The binary will be available in the `target/release` folder. You can move it in your `$PATH` to have the `zola` command available globally or in a directory if you want for example to have the binary in the same repository as the site. - - -## Older versions (Gutenberg) -Before 0.5, Zola was called Gutenberg. Since the process of updating package managers to Zola is on-going, you can still -download previous versions of Gutenberg on your package manager of choice in the meantime. - -### macOS - -Gutenberg is available on [Brew](https://brew.sh): - -```bash -$ brew install gutenberg -``` - -### Windows - -Gutenberg is available on [Scoop](http://scoop.sh): - -```bash -$ scoop install gutenberg -``` - -And [Chocolatey](https://chocolatey.org/): - -```bash -$ choco install gutenberg -``` - -### Arch Linux - -Use your favourite AUR helper to install the `gutenberg-bin` package. - -```bash -$ yaourt -S gutenberg-bin -``` - -### Void Linux - -From the terminal, run the following command: - -```bash -$ xbps-install -S gutenberg -``` From e92ec494b048a818303c8ce1dfa631d3fece4ca7 Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Fri, 30 Nov 2018 23:16:21 +0100 Subject: [PATCH 10/15] Adding GH specific issues/pr templates --- .github/ISSUE_TEMPLATE/bug_report.md | 23 +++++++++ .github/ISSUE_TEMPLATE/documentation.md | 14 ++++++ .github/PULL_REQUEST_TEMPLATE.md | 20 ++++++++ CONTRIBUTING.md | 66 +++++++++++++++++++++++++ README.md | 52 ------------------- 5 files changed, 123 insertions(+), 52 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/documentation.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 CONTRIBUTING.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..4df66da3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,23 @@ +--- +name: Bug Report +about: Did you run into an issue with the zola command line? +--- + +# Bug Report + +## Environment + +Zola version: + +## Expected Behavior +Tell us what should have happened. + +## Current Behavior +Tell us what happens instead of the expected behavior. If you are seeing an +error, please include the full error message and stack trace. You can get the +stacktrace of a panic by adding `RUST_BACKTRACE=1` when running a `zola` command. + +## Step to reproduce +Please provide the steps to reproduce the issue. +If the issue is hard to reproduce, please provide a sample repository or sample +that triggers the bug. diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md new file mode 100644 index 00000000..d0466870 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -0,0 +1,14 @@ +--- +name: Documentation +about: Is the documentation lacking or has typos/errors/missing/outdated content? +--- + +# Documentation issue + +## Summary +What is the issue? Is the documentation unclear? Is it missing information? + +## Proposed solution +A quick explanation of what you would like to see to solve the issue. +If you want to add content, please explain what you were looking fod and what was +your process while looking at the current documentation. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..8853354b --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,20 @@ +**IMPORTANT: Please do not create a Pull Request adding a new feature without discussing it first.** + +The place to discuss new features is the forum: +If you want to add a new feature, please open a thread there first in the feature requests section. + +Sanity check: + +* [ ] Have you checked to ensure there aren't other open [Pull Requests](../../pulls) for the same update/change? + +## Code changes +(Delete or ignore this section for documentation changes) + +* [ ] Are you doing the PR on the `next` branch? + +If the change is a new feature or adding to/changing an existing one: + +* [ ] Have you created/updated the relevant documentation page(s)? + + + diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..f8b66458 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,66 @@ +# Contributing +**As the documentation site is automatically built on commits to master, all development happens on +the `next` branch, unless it is fixing the current documentation.** + +However, if you notice an error or typo in the documentation, feel free to directly submit a PR without opening an issue. + +## Feature requests +If you want a feature added or modified, please open a thread on the [forum](https://zola.discourse.group/) to discuss it before doing a PR. + +Requested features will not be all added: an ever-increasing features set makes for a hard to use and explain softwares. +Having something simple and easy to use for 90% of the usecases is more interesting than covering 100% usecases after sacrificing simplicity. + +## Issues tagging + +As the development happens on the `next` branch, issues are kept open until a release containing the fix is out. +During that time, issues already resolved will have a `done` tag. + +If you want to work on an issue, please mention it in a comment to avoid potential duplication of work. If you have +any questions on how to approach it do not hesitate to ping me (@keats). +Easy issues are tagged with `help wanted` and/or `good first issue` + +## Adding syntax highlighting languages and themes + +### Adding a syntax +Syntax highlighting depends on submodules so ensure you load them first: + +```bash +$ git submodule update --init +``` + +Zola 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/SublimeElmLanguageSupport +``` + +Note that you can also only copy manually the updated syntax definition file but this means +Zola won't be able to automatically update it. + +You can check for any updates to the current packages by running: + +```bash +$ git submodule update --remote --merge +``` + +And finally from the root of the components/config crate run the following command: + +```bash +$ cargo run --example generate_sublime synpack ../../sublime_syntaxes ../../sublime_syntaxes/newlines.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 Zola, 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/config: + +```bash +$ cargo run --example generate_sublime themepack ../../sublime_themes ../../sublime_themes/all.themedump +``` + +You should see the list of themes being added. diff --git a/README.md b/README.md index cb84cab4..006944cc 100644 --- a/README.md +++ b/README.md @@ -53,55 +53,3 @@ Hugo gets `~`. It is probably the most powerful template engine in the list afte Many features of Pelican are coming from plugins, which might be tricky to use because of version mismatch or lacking documentation. Netlify supports Python and Pipenv but you still need to install your dependencies manually. - -## 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. - -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 -Syntax highlighting depends on submodules so ensure you load them first: - -```bash -$ git submodule update --init -``` - -Zola 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/SublimeElmLanguageSupport -``` - -Note that you can also only copy manually the updated syntax definition file but this means -Zola won't be able to automatically update it. - -You can check for any updates to the current packages by running: - -```bash -$ git submodule update --remote --merge -``` - -And finally from the root of the components/config crate run the following command: - -```bash -$ cargo run --example generate_sublime synpack ../../sublime_syntaxes ../../sublime_syntaxes/newlines.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 Zola, 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/config: - -```bash -$ cargo run --example generate_sublime themepack ../../sublime_themes ../../sublime_themes/all.themedump -``` - -You should see the list of themes being added. From 4f9e20bd2b127b83395bdc64b69ee168cd5c0584 Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Fri, 30 Nov 2018 23:17:22 +0100 Subject: [PATCH 11/15] Slight tweak on text --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 4df66da3..3bde46ad 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,6 +1,6 @@ --- name: Bug Report -about: Did you run into an issue with the zola command line? +about: Did you run into an issue while using Zola? --- # Bug Report From 6280aef565b761177e8e51e6a5e4501405785b89 Mon Sep 17 00:00:00 2001 From: Daichi Mukai Date: Sat, 1 Dec 2018 17:18:21 +0900 Subject: [PATCH 12/15] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 006944cc..00657b07 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ in the `docs/content` folder of the repository and the community can use [its fo | LiveReload | ✔ | ✕ | ✔ | ✔ | | Netlify support | ~ | ✕ | ✔ | ✕ | | Breadcrumbs | ✔ | ✕ | ✕ | ✔ | -| Custom ouput formats | ✕ | ✕ | ✔ | ? | +| Custom output formats | ✕ | ✕ | ✔ | ? | ### Supported content formats From 4aa79a46be9c60d8f32fa45f88baae0cb9c22de0 Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Mon, 3 Dec 2018 17:27:28 +0100 Subject: [PATCH 13/15] Fix gallery shortcode --- docs/templates/shortcodes/gallery.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/templates/shortcodes/gallery.html b/docs/templates/shortcodes/gallery.html index d2afc716..a9261e99 100644 --- a/docs/templates/shortcodes/gallery.html +++ b/docs/templates/shortcodes/gallery.html @@ -1,8 +1,8 @@ -{% for asset in page.assets %} - {% if asset is ending_with(".jpg") %} - - +{% for asset in page.assets -%} + {%- if asset is ending_with(".jpg") -%} + +   - {% endif %} -{% endfor %} + {%- endif %} +{%- endfor %} From d4487381ff7bfecdeb891ed42d62171acb5f166d Mon Sep 17 00:00:00 2001 From: Matteo Guglielmetti Date: Mon, 3 Dec 2018 17:31:53 +0100 Subject: [PATCH 14/15] Fixed name in Image Processing page --- docs/content/documentation/content/image-processing/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/documentation/content/image-processing/index.md b/docs/content/documentation/content/image-processing/index.md index 61e6da41..d3c4799c 100644 --- a/docs/content/documentation/content/image-processing/index.md +++ b/docs/content/documentation/content/image-processing/index.md @@ -3,7 +3,7 @@ title = "Image processing" weight = 120 +++ -Gutenberg provides support for automatic image resizing through the built-in function `resize_image`, +Zola provides support for automatic image resizing through the built-in function `resize_image`, which is available in template code as well as in shortcodes. The function usage is as follows: From d8693ef1f8b4f50299ca6f789cadd0a7e0e57021 Mon Sep 17 00:00:00 2001 From: "Bob \"Wombat\" Hogg" Date: Tue, 11 Dec 2018 10:58:53 -0800 Subject: [PATCH 15/15] Mark required Rust version as 1.29 690b3f9 updated the required version in Cargo.lock and in the CI config files, but not in the installation instructions. --- docs/content/documentation/getting-started/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/documentation/getting-started/installation.md b/docs/content/documentation/getting-started/installation.md index 505744ed..f4e55b1a 100644 --- a/docs/content/documentation/getting-started/installation.md +++ b/docs/content/documentation/getting-started/installation.md @@ -47,7 +47,7 @@ $ choco install zola ``` ## From source -To build it from source, you will need to have Git, [Rust (at least 1.28) and Cargo](https://www.rust-lang.org/) +To build it from source, you will need to have Git, [Rust (at least 1.29) and Cargo](https://www.rust-lang.org/) installed. You will also need additional dependencies to compile [libsass](https://github.com/sass/libsass): - OSX, Linux and other Unix: `make` (`gmake` on BSDs), `g++`, `libssl-dev`