Skip to content

Commit

Permalink
[v3] Update Markdown files to latest spec (#92)
Browse files Browse the repository at this point in the history
* [v3] Add level one headings to Markdown files.

All Markdown files should, from this point on, start with a level one heading.
See exercism/configlet#150 for the rationale behind these changes.

The full specification can be found [here](https://github.com/exercism/docs/blob/main/contributing/standards/markdown.md).

* [v3] Markdown sub-headings must be parent level incremented by one.

The full specification can be found [here](https://github.com/exercism/docs/blob/main/contributing/standards/markdown.md).
  • Loading branch information
ErikSchierboom authored May 4, 2021
1 parent 89f2bad commit dd90796
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions docs/ABOUT.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# About

[Pony](http://www.ponylang.org) is an object-oriented, actor-model, capabilities-secure programming language focused on geting stuff done.

It's object-oriented because it has classes and objects, like Python, Java, C++, and many other languages. It's actor-model because it has actors (similar to Erlang or Akka). These behave like objects, but they can also execute code asynchronously. Actors make Pony awesome.
Expand Down
6 changes: 3 additions & 3 deletions docs/INSTALLATION.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
## Installing the Pony Compiler
# Installing the Pony Compiler

### Homebrew on Mac OS X
## Homebrew on Mac OS X

```bash
brew update
brew install ponyc
```

### Other Platforms
## Other Platforms

Instructions for installing Pony can be found in the [ponyc installation](https://github.com/ponylang/ponyc/blob/master/README.md#installation)
2 changes: 1 addition & 1 deletion docs/LEARNING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Resources for Learning Pony:
# Resources for Learning Pony:

- [The Pony Tutorial](https://tutorial.ponylang.org/)
- [Pony Patterns](https://patterns.ponylang.org/)
Expand Down
2 changes: 1 addition & 1 deletion docs/RESOURCES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Resources for Learning Pony
# Resources for Learning Pony

- [The Pony Tutorial](https://tutorial.ponylang.org/)
- [Pony Patterns](https://patterns.ponylang.org/)
Expand Down
2 changes: 1 addition & 1 deletion docs/TESTS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Running tests
# Running tests

To compile and run the tests, just run the following in your exercise directory:
```bash
Expand Down

0 comments on commit dd90796

Please sign in to comment.