Skip to content

Commit a6bf25d

Browse files
committed
Update Jekyll config file with 4 entries
- Remove unneeded final blank line from HTML - Fix HTML by removing unneeded closing div tag - Malformed HTML markup is best seen in Firefox in view source mode and it shows up in red - view-source:http://mruby.org/ line 174 https://github.com/jekyll/jekyll/blob/master/docs/_config.yml
1 parent 7e84125 commit a6bf25d

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

_config.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
name: mruby
2+
title: Lightweight Ruby
3+
description: >- # this means to ignore newlines until "markdown:"
4+
mruby is the lightweight implementation of the Ruby language complying to (part of) the ISO standard.
5+
mruby can be linked and embedded within your application. We provide the interpreter program "mruby" and the
6+
interactive mruby shell "mirb" as examples. You can also compile Ruby programs into compiled byte code using the
7+
mruby compiler "mrbc". All those tools reside in the "bin" directory. "mrbc" is also able to generate compiled byte
8+
code in a C source file, see the "mrbtest" program under the "test" directory for an example.
29
markdown: kramdown
310
highlighter: rouge
11+
url: https://mruby.org
12+
repository: https://github.com/mruby/mruby.github.io
413
include: _index.html
514
exclude:
615
- Gemfile

_includes/_latest_news.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<h2>Latest News</h2>
44
</div>
55
</div>
6-
</div>
76
<div class='row'>
87
<div class="col-md-12">
98
<ul class="posts">

_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
{% include footer.html %}
2222

2323
</body>
24-
</html>
24+
</html>

_layouts/post.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
{% include footer.html %}
2222

2323
</body>
24-
</html>
24+
</html>

0 commit comments

Comments
 (0)