Switch markdown engine to kramdown.

This commit is contained in:
Mark Paluch
2016-04-07 09:55:19 +02:00
parent f2435abad6
commit 7ef2936e4f
3 changed files with 7 additions and 5 deletions

View File

@@ -1,10 +1,11 @@
### Global gh-pages pre-amble
safe: true
lsi: false
pygments: true
markdown: redcarpet
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
markdown: kramdown
kramdown:
input: GFM
auto_ids: true
syntax_highlighter: rouge
### The following properties will change on a project-by-project basis

View File

@@ -57,6 +57,7 @@ Spring Data REST builds on top of Spring Data repositories, analyzes your applic
* Allows [advanced customizations](http://docs.spring.io/spring-data/rest/docs/current/reference/html/#customizing-sdr) of the default resources exposed.
<span id="quick-start"></span>
## Quick Start
{% include download_widget.md %}

View File

@@ -8,7 +8,7 @@ $(document).ready(function() {
Spring.configureCopyButtons = function() {
if (ZeroClipboard.detectFlashSupport()) {
$(".highlight > pre").each(function(index) {
$(".highlighter-rouge > pre").each(function(index) {
Spring.buildCopyButton($(this), index);
}
);