Switch markdown engine to kramdown.

This commit is contained in:
Mark Paluch
2016-04-07 09:53:11 +02:00
parent 5c9902b019
commit 626fb03196
3 changed files with 8 additions and 6 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

@@ -35,7 +35,7 @@ badges:
<!-- Specify the parent of this project (or delete if none) to influence the rendering of the breadcrumb -->
{% capture parent_link %}
[Spring Parent]({{ site.projects_site_url }}/spring-parent)
[Spring Data]({{ site.projects_site_url }}/spring-data)
{% endcapture %}
{% capture billboard_description %}
@@ -60,6 +60,7 @@ The Apache Cassandra NoSQL Database offers many new capabilities for teams seeki
* Based on the latest DataStax Enterprise CQL Java Driver
<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);
}
);