This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
usaco-guide/Content Documentation.md

152 lines
4.9 KiB
Markdown
Raw Normal View History

2020-06-15 23:19:07 +00:00
## Content Formatting Documentation
All modules are written in [Markdown](https://www.markdownguide.org/cheat-sheet/). There are special additions to the markdown that we have added to this site.
These special additions are still under development, so they may change frequently.
If you are confused about something, or if there's a certain feature that you want to add, reach out to Nathan Wang.
You can use [StackEdit](https://stackedit.io/) to check that latex renders properly.
### `ordering.js`
Located at `content/ordering.js`, this file stores the ordering of the modules. Hopefully the format is self-explanatory
(it matches based on "slug"). Let Nathan Wang know if you have questions.
### Frontmatter
[Frontmatter](https://jekyllrb.com/docs/front-matter/) is the stuff in the beginning of each module that's surrounded
by three dashes. Frontmatter is written in [YAML](https://yaml.org/). It stores the "metadata" for each module.
YAML formatting is _extremely strict_. Be careful about spaces.
- **ID**: _Required_. The ID of the module. Ex: `getting-started`, or `containers`. This ID is used to identify
the module, so make sure it is **unique** and **all lowercase with dashes only**. The URL will be generated based off this.
- **Title**: _Required_. The title of the module. Ex: `Getting Started`
- **Author**: _Required_. The author of the module. Ex: `Unknown`
- **Prerequisites**: _Optional_. Any prerequisites for this module.
The prerequisite formatting is rather unintuitive. It expects an array of arrays, where the first item is
the name of the prerequisite, and the optional second item is a link. **Note the number of spaces!**
Example:
```
prerequisites:
-
- Prerequisite Name
- https://dummy.prerequisite.link.com/
-
- Another Prerequisite Without a Link
```
- **Problems**: _Optional_. A list of problems in the article. As we haven't figured out what we're going to do with
**it's best to not include this yet.** For USACO problems, enter each problem as `division_filename`. Ex: `bronze_promote`.
### Module Description
2020-06-17 22:18:07 +00:00
Everything contained in `module-excerpt` tags is part of the "module description." It gets rendered on the homepage. Be careful not to use headers
2020-06-15 23:19:07 +00:00
as they will look really weird on the homepage. The module description is also included in the article itself.
If you don't want a description for the module, just put the `END DESCRIPTION` line as the first line
after the frontmatter.
If you want a description that appears only on the homepage but not the article, wrap it in
an HTML element with the class `syllabus-only`. Note that you can't use markdown in HTML elements.
Example:
```
2020-06-17 22:18:07 +00:00
<module-excerpt>
2020-06-15 23:19:07 +00:00
<ul class="syllabus-only">
<li>Contest Format</li>
<li>Choosing a Language</li>
<li>Practicing and Debugging</li>
<li>Contest Strategies</li>
</ul>
2020-06-17 22:18:07 +00:00
</module-excerpt>
2020-06-15 23:19:07 +00:00
```
This will render as a list in the homepage, but won't appear in the article.
### Spoilers
Spoilers are collapsible elements that only show themselves when the user clicks on it. It's useful
when writing solutions to problems. The styling of the spoilers is still a work in progress (especially for spoilers in lists).
2020-06-17 23:10:45 +00:00
// TODO update spoiler docs to reflect new tag
2020-06-15 23:19:07 +00:00
```
2020-06-17 23:10:45 +00:00
<spoiler title="Show Solution">
2020-06-15 23:19:07 +00:00
- Insert OP benq solution here
</details>
```
The `summary` tag is shown. Everything below it is only shown after the user chooses to "reveal" spoilers.
The formatting of the details is **very delicate**. In particular, note the empty line after the summary tag
and before the content of the details tag. **This empty line must be indented to the beginning of the details tag.**
For example:
```
- Here's a list
- And below is a details tag in a list (which looks kind of ugly right now; hopefully it'll be fixed soon)
- <details> // Indented with two characters (a dash and a space)
<summary>Show Solution</summary> // Indented with FOUR spaces
// Indented with TWO spaces
- Insert OP benq solution here // Indented with FOUR spaces
</details>
```
### Custom Blocks
Currently, we only have one custom block (info), but others can easily be added (ex: warning, danger, error, success?).
Just let Nathan Wang know.
#### Info Block
```
[[info | Insert Title Here]]
| Insert Content Here
| **Markdown is Supported!!**
```
### Example Module
```
---
id: /intro/getting-started
title: Getting Started
author: Nathan Wang
order: 1
prerequisites:
-
- Dummy prerequisite
- https://dummy.prerequisite.link.com/
-
- Another Prerequisite
problems:
- bronze_promote
- bronze_word
- bronze_paint
- bronze_square
---
2020-06-17 22:18:07 +00:00
<module-excerpt>
2020-06-15 23:19:07 +00:00
<ul class="syllabus-only">
<li>Contest Format</li>
<li>Choosing a Language</li>
<li>Practicing and Debugging</li>
<li>Contest Strategies</li>
</ul>
2020-06-17 22:18:07 +00:00
</module-excerpt>
2020-06-15 23:19:07 +00:00
<details>
<summary>Show Solution</summary>
- Insert OP benq solution here
</details>
# Hello World!
```