Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] misc minor fixes to the documentation #482

Merged
merged 11 commits into from
May 12, 2024
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
.DS_Store
.idea/
activities/.DS_Store
protocols/.DS_Store

.idea/

node_modules
local_data

package-lock.json
package.json
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ repos:
- id: check-json
- id: check-ast
- id: check-added-large-files
- id: check-merge-conflict
- repo: https://github.com/psf/black
rev: 24.3.0
hooks:
Expand Down
18 changes: 18 additions & 0 deletions .remarkrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"plugins": [
"preset-lint-markdown-style-guide",
"preset-lint-recommended",
"remark-gfm",
["lint-no-duplicate-headings", false],
["lint-list-item-indent", "tab-size"],
["lint-emphasis-marker", "consistent"],
["lint-maximum-line-length", 500],
["lint-maximum-heading-length", false],
["lint-no-shortcut-reference-link", false],
["remark-lint-unordered-list-marker-style", "-"],
["lint-no-trailing-spaces"],
["remark-lint-code-block-style", false],
["lint-no-undefined-references", false],
["remark-lint-heading-style", false]
]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ following libraries via pip

To make a new release:

```
```bash
python scripts/makeRelease.py <version>
python scripts/editProperties.py <version>
```
Expand Down
25 changes: 0 additions & 25 deletions docs/41_create_new_protocol.md

This file was deleted.

105 changes: 0 additions & 105 deletions docs/43_create_new_assess.md

This file was deleted.

13 changes: 8 additions & 5 deletions docs/100_about_this_doc.md → docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
# About this documentation
# Contributing

This documentation is a work in progress and we wellcome any input: if something is missing or unclear, let us know by [opening an issue on our repository] (???).
## Contributing to the documentation

## Serving the doc locally
This documentation is a work in progress and we wellcome any input:
if something is missing or unclear, let us know by opening an issue on our repository.

### Serving the doc locally

This project uses [MkDocs](https://www.mkdocs.org/) tool with [Material theme](https://squidfunk.github.io/mkdocs-material/)
and extra plugins to generate the website.

To test locally, you will need to install the Python dependencies. To do that, type the following commands:

```
```bash
git clone https://github.com/ReproNim/reproschema.git
cd reproschema
pip install -r requirements.txt
Expand All @@ -20,7 +23,7 @@ by `git clone [email protected]/<username>/reproschema.git` where `<username>` is y

Once done, you need to run MkDocs. Simply type:

```
```bash
mkdocs serve
```

Expand Down
Loading
Loading