2015-10-23 18:25:42 +00:00
|
|
|
# Contributing
|
|
|
|
|
2016-02-15 22:47:35 +00:00
|
|
|
All contributions are welcome, from the tiniest typo to a brand new article.
|
|
|
|
Translations in all languages are welcome (or, for that matter, original
|
|
|
|
articles in any language). Send a pull request or open an issue any time of day
|
|
|
|
or night.
|
2015-10-23 18:25:42 +00:00
|
|
|
|
2016-02-15 22:47:35 +00:00
|
|
|
**Please prepend the tag `[language/lang-code]` to your issues and pull
|
|
|
|
requests.** For example, `[python/en]` for English Python. This will help
|
|
|
|
everyone pick out things they care about.
|
2015-10-23 18:25:42 +00:00
|
|
|
|
2016-02-15 22:47:35 +00:00
|
|
|
We're happy for any contribution in any form, but if you're making more than one
|
|
|
|
major change (i.e. translations for two different languages) it would be super
|
|
|
|
cool of you to make a separate pull request for each one so that someone can
|
|
|
|
review them more effectively and/or individually.
|
2015-10-23 18:25:42 +00:00
|
|
|
|
|
|
|
## Style Guidelines
|
|
|
|
|
2022-11-30 13:04:36 +00:00
|
|
|
* **Keep lines under 80 chars**
|
2024-12-09 10:38:02 +00:00
|
|
|
* Try to keep line length in code blocks to 80 characters or fewer.
|
2022-11-30 13:07:56 +00:00
|
|
|
* Otherwise, the text will overflow and look odd.
|
2022-11-30 13:28:20 +00:00
|
|
|
* This and other potential pitfalls to format the content consistently are
|
2024-12-09 10:38:02 +00:00
|
|
|
identified by [markdownlint](https://github.com/markdownlint/markdownlint).
|
2022-11-30 13:04:36 +00:00
|
|
|
* **Prefer example to exposition**
|
2022-11-30 13:07:56 +00:00
|
|
|
* Try to use as few words as possible.
|
|
|
|
* Code examples are preferred over exposition in all cases.
|
2022-11-30 13:04:36 +00:00
|
|
|
* **Eschew surplusage**
|
2022-11-30 13:07:56 +00:00
|
|
|
* We welcome newcomers, but the target audience for this site is programmers
|
2022-11-30 13:15:44 +00:00
|
|
|
with some experience.
|
2022-11-30 13:07:56 +00:00
|
|
|
* Try to avoid explaining basic concepts except for those specific to the
|
2022-11-30 13:15:44 +00:00
|
|
|
language in question.
|
2022-11-30 13:07:56 +00:00
|
|
|
* Keep articles succinct and scannable. We all know how to use Google here.
|
2022-11-30 13:04:36 +00:00
|
|
|
* **Use UTF-8**
|
2015-10-23 18:25:42 +00:00
|
|
|
|
2016-02-15 22:47:35 +00:00
|
|
|
### Header configuration
|
2015-10-23 18:25:42 +00:00
|
|
|
|
2024-12-09 13:24:46 +00:00
|
|
|
The actual site generates HTML files from these Markdown ones.
|
|
|
|
The markdown files can contain extra metadata before the actual markdown,
|
|
|
|
called frontmatter.
|
2015-10-23 18:25:42 +00:00
|
|
|
|
2016-02-15 22:47:35 +00:00
|
|
|
The following fields are necessary for English articles about programming
|
|
|
|
languages:
|
|
|
|
|
2024-12-18 16:38:58 +00:00
|
|
|
* `name`: The human-readable name of the programming language
|
|
|
|
* `contributors`: A list of [*author*, *URL*] lists to credit, *URL* is optional
|
2015-10-23 18:25:42 +00:00
|
|
|
|
|
|
|
Other fields:
|
|
|
|
|
2024-12-18 16:38:58 +00:00
|
|
|
* `category`: The category of the article. So far, can be one of *language*,
|
2019-03-08 16:24:13 +00:00
|
|
|
*tool* or *Algorithms & Data Structures*. Defaults to *language* if omitted.
|
2024-12-18 16:38:58 +00:00
|
|
|
* `filename`: The filename for this article's code. It will be fetched, mashed
|
2016-02-15 22:47:35 +00:00
|
|
|
together, and made downloadable.
|
2024-12-09 13:24:46 +00:00
|
|
|
|
2024-12-18 16:38:58 +00:00
|
|
|
Translations should also include:
|
|
|
|
* `translators`: A list of [*translator*, *URL*] lists to credit, *URL* is optional
|
|
|
|
|
2024-12-09 13:24:46 +00:00
|
|
|
Non-English articles inherit frontmatter values from the English article (if it exists)
|
|
|
|
but you can overwrite them.
|
2015-10-23 18:25:42 +00:00
|
|
|
|
2024-12-09 10:38:02 +00:00
|
|
|
Here's an example header for Ruby:
|
2015-10-23 18:25:42 +00:00
|
|
|
|
|
|
|
```yaml
|
2024-12-18 16:38:58 +00:00
|
|
|
---
|
2024-12-09 11:34:00 +00:00
|
|
|
name: Ruby
|
2024-12-09 10:38:02 +00:00
|
|
|
filename: learnruby.rb
|
2015-10-23 18:25:42 +00:00
|
|
|
contributors:
|
|
|
|
- ["Doktor Esperanto", "http://example.com/"]
|
|
|
|
- ["Someone else", "http://someoneelseswebsite.com/"]
|
2024-12-18 16:38:58 +00:00
|
|
|
---
|
2015-10-23 18:25:42 +00:00
|
|
|
```
|
2017-11-13 21:45:40 +00:00
|
|
|
|
2024-04-03 11:16:08 +00:00
|
|
|
### Syntax highlighter
|
|
|
|
|
2024-12-09 10:38:02 +00:00
|
|
|
[Pygments](https://pygments.org/languages/) is used for syntax highlighting.
|
2024-04-03 11:16:08 +00:00
|
|
|
|
|
|
|
### Should I add myself as a contributor?
|
2017-11-13 21:45:40 +00:00
|
|
|
|
|
|
|
If you want to add yourself to contributors, keep in mind that contributors get
|
|
|
|
equal billing, and the first contributor usually wrote the whole article. Please
|
2022-01-03 15:57:54 +00:00
|
|
|
use your judgment when deciding if your contribution constitutes a substantial
|
2017-11-13 21:45:40 +00:00
|
|
|
addition or not.
|
2018-11-17 13:34:43 +00:00
|
|
|
|
|
|
|
## Building the site locally
|
|
|
|
|
2024-12-09 10:38:02 +00:00
|
|
|
Install Python. On macOS this can be done with [Homebrew](https://brew.sh/).
|
2024-10-30 05:29:13 +00:00
|
|
|
|
|
|
|
```sh
|
2024-12-09 10:38:02 +00:00
|
|
|
brew install python
|
2024-10-30 05:29:13 +00:00
|
|
|
```
|
|
|
|
|
2024-10-30 20:47:12 +00:00
|
|
|
Then clone two repos, install dependencies and run.
|
2024-10-30 05:29:13 +00:00
|
|
|
|
|
|
|
```sh
|
2024-10-30 20:47:12 +00:00
|
|
|
# Clone website
|
2024-10-30 05:29:13 +00:00
|
|
|
git clone https://github.com/adambard/learnxinyminutes-site
|
2024-10-30 20:47:12 +00:00
|
|
|
# Clone docs (this repo) nested in website
|
2024-10-30 05:29:13 +00:00
|
|
|
git clone https://github.com/<YOUR-USERNAME>/learnxinyminutes-docs ./learnxinyminutes-site/source/docs/
|
|
|
|
|
2024-10-30 20:47:12 +00:00
|
|
|
# Install dependencies
|
2024-10-30 05:29:13 +00:00
|
|
|
cd learnxinyminutes-site
|
2024-12-09 10:38:02 +00:00
|
|
|
pip install -r requirements.txt
|
2024-10-30 05:29:13 +00:00
|
|
|
|
2024-10-30 20:47:12 +00:00
|
|
|
# Run
|
2024-12-09 10:38:02 +00:00
|
|
|
python build.py
|
|
|
|
cd build
|
|
|
|
python -m http.server
|
|
|
|
|
|
|
|
# open http://localhost:8000/ in your browser of choice
|
2024-10-30 05:29:13 +00:00
|
|
|
```
|