Skip to content

Commit 03e6363

Browse files
committed
use kramdown
1 parent 028051b commit 03e6363

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

_config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,17 @@ url: http://udapi.github.io
1616
# then add in the baseurl here, like this: "/repository-name"
1717
baseurl: ""
1818

19+
# Jekyll 3 now only supports Kramdown for Markdown
20+
kramdown:
21+
# Use GitHub flavored markdown, including triple backtick fenced code blocks
22+
input: GFM
23+
# # Jekyll 3 and GitHub Pages now only support rouge for syntax highlighting
24+
# syntax_highlighter: rouge
25+
# syntax_highlighter_opts:
26+
# # Use existing pygments syntax highlighting css
27+
# css_class: 'highlight'
28+
29+
1930
# Use the following plug-ins
2031
#gems:
2132
# - jekyll-sitemap # Create a sitemap using the official Jekyll sitemap gem

_layouts/default.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ <h1 class="site-name"><a href="{{ site.baseurl }}/">{{ site.name }}</a></h1>
2727
</div>
2828

2929
<nav>
30-
<a href="{{ site.baseurl }}/">Blog</a>
31-
<a href="{{ site.baseurl }}/about">About</a>
30+
<a href="{{ site.baseurl }}/">Home</a>
31+
<a href="{{ site.baseurl }}/example.html">Example</a>
3232
</nav>
3333
</header>
3434
</div>

index.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@ <h2>API and multi-language framework for processing Universal Dependencies</h2>
2929

3030
<div class="container">
3131
<section id="main_content">
32-
<h1>
33-
<a id="udapi" class="anchor" href="#udapi" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Udapi</h1>
34-
32+
<h1>Udapi</h1>
33+
<nav>
34+
<a href="{{ site.baseurl }}/">Home</a>
35+
<a href="{{ site.baseurl }}/example.html">Example</a>
36+
</nav>
3537
<p>a framework for processing <a href="http://universaldependencies.org/">Universal Dependencies</a> data</p>
3638
</section>
3739
</div>

0 commit comments

Comments
 (0)