Skip to content

Commit b75bfb2

Browse files
committed
Update the README to include some notes on how to build locally.
The config also had a deprecated option.
1 parent b32ca9c commit b75bfb2

File tree

2 files changed

+25
-6
lines changed

2 files changed

+25
-6
lines changed

Diff for: README.md

+24-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,35 @@
1-
# Testanything.org
1+
# testanything.org
22

3-
Test anything site is the website for Test anything protocol the simple text based interface for testing modules.
3+
[testanything.org][ta] is the website for the Test Anything Protocol (TAP),
4+
the simple text based interface for testing modules.
5+
6+
[ta]: http://testanything.org/
47

58
The goals of this site are to:
69

7-
- Get testanything.org back online
810
- Structure the site to be a resource for developers
911
- Move discussion based articles to another place
1012
- Keep content up to date with platforms using TAP
1113
- Advance specifications to move towards industry standard
1214

1315
The old site can be found here:
14-
[Wayback Testanything.org](http://web.archive.org/web/20120718051314/http://testanything.org/wiki/index.php/TAP_Consumers)
16+
[Wayback testanything.org](http://web.archive.org/web/20120718051314/http://testanything.org/wiki/index.php/TAP_Consumers)
17+
18+
Please submit issues or pull requests, all are welcome.
19+
20+
# Building locally
21+
22+
This site is built with [Jekyll](https://jekyllrb.com/).
23+
Jekyll can be installed using gem, the Ruby language packaging tool.
24+
If you have trouble installing Jekyll, please refer to
25+
[their installation documentation](http://jekyllrb.com/docs/installation/).
26+
27+
```bash
28+
$ gem install jekyll
29+
```
30+
31+
After installing Jekyll, you can test your changes locally with:
1532

16-
Please submit issues or pull requests, all are welcome.
33+
```bash
34+
$ jekyll serve
35+
```

Diff for: _config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name: TestAnything.org
22
markdown: redcarpet
3-
pygments: true
3+
highlighter: pygments

0 commit comments

Comments
 (0)