Skip to content
This repository has been archived by the owner on Jul 2, 2022. It is now read-only.

Commit

Permalink
Clean up config.toml.
Browse files Browse the repository at this point in the history
- Hugo 0.28 and newer use Chroma, a Go syntax highlight library:

  https://gohugo.io/content-management/syntax-highlighting/

  Setting the site configuration variable `pygmentsUseClassic` to true
  reverts to Pygments highlighting, allowing learntla.com to continue
  to use https://github.com/hwayne/tla-pygments.

- Remove the menu parameter, per
  4101699

- Use hugo-theme-learn's disableSearch and
  disableInlineCopyToClipBoard to disable features previously disabled
  by overriding footer.html.
  • Loading branch information
markrwilliams committed Oct 5, 2017
1 parent 4101699 commit 12703bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ baseurl = "http://learntla.com"
title = "Learn TLA"
theme = "hugo-theme-learn"
googleAnalytics = "UA-90708265-1"
pygmentsUseClassic = true
PygmentsCodeFences = true

[Params]
Author = "Hillel Wayne"
menu = ["introduction", "pluscal", "tla", "models", "concurrency", "temporal-logic", "techniques", "reference"]
disableSearch = true
disableInlineCopyToClipBoard = true

0 comments on commit 12703bb

Please sign in to comment.