diff options
author | Daniil Baturin <daniil@vyos.io> | 2023-08-22 16:08:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-22 16:08:11 +0100 |
commit | 80709de26b819305dd52048c15e11911f5738e04 (patch) | |
tree | 19ee2395a3c0da6942ed8d8ba181dd2ee6ed726d | |
parent | 36617f4fbaae28438509310273ca58c1a83f4ee1 (diff) | |
parent | ac0e66d1c4a263d10ecd15936ff1ca217445a177 (diff) | |
download | community.vyos.net-80709de26b819305dd52048c15e11911f5738e04.tar.gz community.vyos.net-80709de26b819305dd52048c15e11911f5738e04.zip |
Merge pull request #16 from toastal/patch-1
Casing
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -40,12 +40,12 @@ We encourage you to make sure that the site builds and looks as expected before Two tools are _required_ for building: * [soupault](https://soupault.app) static site generator. +* [Sass](https://sass-lang.com/) compiler, the Dart version. * [cmark](https://github.com/commonmark/cmark) Markdown processor. -* [SASS](https://sass-lang.com/) compiler, the Dart version. **Note:** the C++ `sassc` _will not_ work! The Dart and the C++ "reference implementations" don't behave the same, -and you'll need the Dart one (available from NPM, `npm install -g sass`). -Hopefully we'll rid this site of SASS some day and it will be no longer an issue. +and you'll need the Dart one (available from npm, `npm install -g sass`). +Hopefully we'll rid this site of Sass some day and it will be no longer an issue. Running `make all` will build both the site and the CSS, generated files will be in `build/`. You can then preview the site with any development web server, e.g. `python3 -m http.server --directory build/`. |