This commit is contained in:
simon 2017-09-09 23:38:18 +01:00
parent 88d26e6d45
commit d27891a152
3 changed files with 5 additions and 3 deletions

View file

@ -3,11 +3,11 @@
:url "https://github.com/simon-brooke/smeagol" :url "https://github.com/simon-brooke/smeagol"
:license {:name "GNU General Public License,version 2.0 or (at your option) any later version" :license {:name "GNU General Public License,version 2.0 or (at your option) any later version"
:url "https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html"} :url "https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html"}
:dependencies [[clj-jgit "0.8.9"] :dependencies [[clj-jgit "0.8.10"]
[clj-yaml "0.4.0"] [clj-yaml "0.4.0"]
[com.cemerick/url "0.1.1"] [com.cemerick/url "0.1.1"]
[com.fzakaria/slf4j-timbre "0.3.7"] [com.fzakaria/slf4j-timbre "0.3.7"]
[com.taoensso/encore "2.91.1"] [com.taoensso/encore "2.92.0"]
[com.cemerick/url "0.1.1"] [com.cemerick/url "0.1.1"]
[com.taoensso/timbre "4.10.0"] [com.taoensso/timbre "4.10.0"]
[com.fzakaria/slf4j-timbre "0.3.7"] [com.fzakaria/slf4j-timbre "0.3.7"]

View file

@ -1,3 +1,5 @@
The basic format of Smeagol pages is [Markdown](https://daringfireball.net/projects/markdown/); documentation on how to format them is [here](https://daringfireball.net/projects/markdown/syntax). Note that there are a number of slightly different variants of Markdown; the version used by Smeagol does not currently allow tables.
A system of pluggable, extensible formatters is supported. In normal markdown, code blocks may be delimited by three backticks at start and end, and often the syntax of the code can be indicated by a token immediately following the opening three backticks. This has been extended to allow custom formatters to be provided for such code blocks. Two example formatters are provided: A system of pluggable, extensible formatters is supported. In normal markdown, code blocks may be delimited by three backticks at start and end, and often the syntax of the code can be indicated by a token immediately following the opening three backticks. This has been extended to allow custom formatters to be provided for such code blocks. Two example formatters are provided:
## The Vega formatter ## The Vega formatter

View file

@ -84,7 +84,7 @@
(try (try
(.reset result reader (.getId tree)) (.reset result reader (.getId tree))
(finally (finally
(.release reader) (.close reader)
(.dispose walk))) (.dispose walk)))
result)) result))