Skip to content

Commit 5fe7582

Browse files
committed
Clean up the README
- Fix missing HTTPS on links - Use direct link - Add language shell to code blocks - Use HTML5 tags
1 parent 8b493c8 commit 5fe7582

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
mruby.org
22
=========
33

4-
This is the [Jekyll](http://www.jekyllrb.com/) source of
5-
the [mruby.org](http://mruby.org/) website.
4+
This is the [Jekyll](https://jekyllrb.com/) source of
5+
the [mruby.org](https://mruby.org/) website.
66

77
## Preview
88

99
The following will give you a preview of the site.
1010

1111
Install bundler:
1212

13-
```
13+
```shell
1414
gem install bundler
1515
```
1616

1717
Clone the repository:
1818

19-
```
19+
```shell
2020
git clone https://github.com/mruby/mruby.github.io
2121
```
2222

2323
Install Jekyll and its dependencies:
2424

25-
```
25+
```shell
2626
cd mruby.github.io
2727
bundle install
2828
```
2929

3030
Preview the site:
3131

32-
```
32+
```shell
3333
bundle exec jekyll serve
3434
open "http://localhost:4000"
3535
```

_includes/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
<link rel="stylesheet" href="/css/main.css">
1919

2020
<!-- Favicon -->
21-
<link rel="icon" type="image/png" href="/favicon.png" />
21+
<link rel="icon" type="image/png" href="/favicon.png">

_includes/navigation.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<nav class="navbar navbar-mruby" role="navigation">
22
<div class="navbar-header">
3-
<a href="/"><img src="/images/mruby_header.png" /></a>
3+
<a href="/"><img src="/images/mruby_header.png"></a>
44
</div>
55

66
<div>
@@ -25,7 +25,7 @@
2525
<!--
2626
<form class="navbar-form navbar-left" role="search">
2727
<div class="form-group">
28-
<input type="text" class="form-control" />
28+
<input type="text" class="form-control">
2929
</div> <button type="submit" class="btn btn-default">Submit</button>
3030
</form>
3131
-->

0 commit comments

Comments
 (0)