Skip to content

Commit

Permalink
[v3] Update Markdown files to latest spec (#174)
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
ErikSchierboom authored May 4, 2021
1 parent 4110268 commit 8fbdb2b
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 3 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

"Racket (formerly named PLT Scheme) is a general purpose, multi-paradigm programming language in the Lisp/Scheme family. One of its design goals is to serve as a platform for language creation, design, and implementation. The language is used in a variety of contexts such as scripting, general-purpose programming, computer science education, and research." - [Wikipedia](https://en.wikipedia.org/wiki/Racket_(programming_language) "Wikipedia page on racket")

You can learn the basics of Racket through a coule of books. Start by checking out [How to Design Programs](https://htdp.org "How to Design Programs website") or the slightly less formal but enjoyable [Realm of Racket](http://www.realmofracket.com/ "Realm of Racket website").
Expand Down
2 changes: 2 additions & 0 deletions docs/INSTALLATION.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Installation

Please reference Racket's [Getting Started](http://docs.racket-lang.org/getting-started/) page for instructions on downloading and installing Racket.

Alternative installation options and further notes for specific OSes follow.
Expand Down
2 changes: 2 additions & 0 deletions docs/LEARNING.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Learning

Exercism provides exercises and feedback but can be difficult to jump into for those learning Racket for the first time.
These resources can help you get started:

Expand Down
2 changes: 2 additions & 0 deletions docs/RESOURCES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Resources

* [The Racket Guide](http://docs.racket-lang.org/guide/index.html)
* [The Racket Reference](http://docs.racket-lang.org/reference/index.html)
* [DrRacket: The Racket Programming Environment](http://docs.racket-lang.org/drracket/index.html)
Expand Down
2 changes: 2 additions & 0 deletions docs/TESTS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Tests

You can run the provided tests through DrRacket, or via the command line.

To run the test through DrRacket, simply open the test file and click the 'Run' button in the upper right.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Note
# Note

The tests for this problem assume that numbers are passed through without being encrypted/decrypted.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Implementation
# Implementation

Implement a procedure named `classify` that takes a number as argument and returns either `'perfect`,
`'abundant`, or `'deficient`.
Expand Down
2 changes: 1 addition & 1 deletion exercises/practice/robot-name/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Note
# Note

For this problem, you will need to write the test.

0 comments on commit 8fbdb2b

Please sign in to comment.