Skip to content

Commit 032b428

Browse files
authored
Use Docusaurus (#277)
1 parent d673b6a commit 032b428

File tree

289 files changed

+13379
-17463
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

289 files changed

+13379
-17463
lines changed

.eslintignore

Whitespace-only changes.

.eslintrc.js

Lines changed: 0 additions & 36 deletions
This file was deleted.

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,10 @@ dist
1111
.eslintcache
1212
.stylelintcache
1313
package-lock.json
14+
15+
# Production
16+
/build
17+
18+
# Generated files
19+
.docusaurus
20+
.cache-loader

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
.cache
2+
.docusaurus/
3+
.cache-loader
24
/__tmp__/
35
/dist/
46
src/.temp

.stylelintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.textlintrc.js

Lines changed: 0 additions & 33 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

LICENSE.md renamed to LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Qualified, Inc
4-
Copyright (c) 2020 Marco Reimann ([docc](https://github.com/mrcrmn/docc) starter)
3+
Copyright (c) 2020 Qualified, Inc
54

65
Permission is hereby granted, free of charge, to any person obtaining a copy
76
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,3 @@
11
# Codewars Docs
22

33
> New documentation for Codewars. Still work in progress.
4-
5-
## Taxonomy
6-
7-
Documents are classified with the following:
8-
9-
- `Kind` (`kind`): By kind of documentation (`recipe`, `reference`, `tutorial`, etc.) See [kinds.yml].
10-
- `Tag` (`tags`): By tags associated with the documentation. See [tags.yml].
11-
- `Language` (`languages`): A special kind of `Tag` that is used to collect documents to show on the language page
12-
13-
## Routes
14-
15-
- `/tutorials/`: All docs with kind `tutorial`
16-
- `/recipes/`: All docs with kind `recipe`
17-
- `/references/`: All docs with kind `reference`
18-
- `/tags/`: List of all tags
19-
- `/tags/:id`: List of docs with tag `id`
20-
- `/languages/`: List of supported languages
21-
- `/languages/:id`: Show language information
22-
- Sidebar lists all pages referencing the language, grouped by `kind`
23-
24-
Markdown files matching `content/**/*.md` generates matching routes. For example, `content/foo/bar.md` generates `/foo/bar/`.
25-
26-
---
27-
28-
Built with [Gridsome](https://gridsome.org/) using [docc](https://github.com/mrcrmn/docc) starter.
29-
30-
[kinds.yml]: ./data/kinds.yml
31-
[tags.yml]: ./data/tags.yml

babel.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: [require.resolve("@docusaurus/core/lib/babel/preset")],
3+
};

0 commit comments

Comments
 (0)