mirror of
https://github.com/rust-lang/mdBook
synced 2024-11-13 00:07:10 +00:00
Add nix to default languages
This commit is contained in:
parent
b7f46213c7
commit
c9df8dd1f3
5 changed files with 13 additions and 1 deletions
|
@ -148,7 +148,7 @@ The following are instructions for updating [highlight.js](https://highlightjs.o
|
||||||
1. Clone the repository at <https://github.com/highlightjs/highlight.js>
|
1. Clone the repository at <https://github.com/highlightjs/highlight.js>
|
||||||
1. Check out a tagged release (like `10.1.1`).
|
1. Check out a tagged release (like `10.1.1`).
|
||||||
1. Run `npm install`
|
1. Run `npm install`
|
||||||
1. Run `node tools/build.js :common apache armasm coffeescript d handlebars haskell http julia nginx nim properties r scala x86asm yaml`
|
1. Run `node tools/build.js :common apache armasm coffeescript d handlebars haskell http julia nginx nim nix properties r scala x86asm yaml`
|
||||||
1. Compare the language list that it spits out to the one in [`syntax-highlighting.md`](https://github.com/camelid/mdBook/blob/master/guide/src/format/theme/syntax-highlighting.md). If any are missing, add them to the list and rebuild (and update these docs). If any are added to the common set, add them to `syntax-highlighting.md`.
|
1. Compare the language list that it spits out to the one in [`syntax-highlighting.md`](https://github.com/camelid/mdBook/blob/master/guide/src/format/theme/syntax-highlighting.md). If any are missing, add them to the list and rebuild (and update these docs). If any are added to the common set, add them to `syntax-highlighting.md`.
|
||||||
1. Copy `build/highlight.min.js` to mdbook's directory [`highlight.js`](https://github.com/rust-lang/mdBook/blob/master/src/theme/highlight.js).
|
1. Copy `build/highlight.min.js` to mdbook's directory [`highlight.js`](https://github.com/rust-lang/mdBook/blob/master/src/theme/highlight.js).
|
||||||
1. Be sure to check the highlight.js [CHANGES](https://github.com/highlightjs/highlight.js/blob/main/CHANGES.md) for any breaking changes. Breaking changes that would affect users will need to wait until the next major release.
|
1. Be sure to check the highlight.js [CHANGES](https://github.com/highlightjs/highlight.js/blob/main/CHANGES.md) for any breaking changes. Breaking changes that would affect users will need to wait until the next major release.
|
||||||
|
|
|
@ -45,6 +45,7 @@ your own `highlight.js` file:
|
||||||
- markdown
|
- markdown
|
||||||
- nginx
|
- nginx
|
||||||
- nim
|
- nim
|
||||||
|
- nix
|
||||||
- objectivec
|
- objectivec
|
||||||
- perl
|
- perl
|
||||||
- php
|
- php
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -28,6 +28,7 @@ This Currently contains following languages
|
||||||
- markdown
|
- markdown
|
||||||
- nginx
|
- nginx
|
||||||
- nim
|
- nim
|
||||||
|
- nix
|
||||||
- objectivec
|
- objectivec
|
||||||
- perl
|
- perl
|
||||||
- php
|
- php
|
||||||
|
|
|
@ -563,6 +563,15 @@ int main(int argc, const char * argv[]) {
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## nix
|
||||||
|
|
||||||
|
```nix
|
||||||
|
let
|
||||||
|
world = "World!";
|
||||||
|
in
|
||||||
|
"Hello " + world
|
||||||
|
```
|
||||||
|
|
||||||
## perl
|
## perl
|
||||||
|
|
||||||
```perl
|
```perl
|
||||||
|
|
Loading…
Reference in a new issue