Skip to content

Commit d7801fb

Browse files
committed
Linting, formatting, documentation comments
1 parent 1feefcd commit d7801fb

File tree

5 files changed

+23
-10
lines changed

5 files changed

+23
-10
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,6 @@ trim_trailing_whitespace = false
1414

1515
[*.yml]
1616
indent_size = 2
17+
18+
[*.svg]
19+
indent_size = 2

.markdownlint.json

+3
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,8 @@
1717
},
1818
"MD026": {
1919
"punctuation": ".,;:。:"
20+
},
21+
"MD025": {
22+
"front_matter_title": ""
2023
}
2124
}

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ generator that uses Markdown files to generate a website. The theme is
1313

1414
## Setup/Running
1515

16-
python -m venv
17-
source venv/bin/activate (or venv\Scripts\Activate on Windows)
18-
pip install -r requirements.txt
19-
mkdocs serve
16+
```shell
17+
python -m venv
18+
source venv/bin/activate (or venv\Scripts\Activate on Windows)
19+
pip install -r requirements.txt
20+
mkdocs serve # add -s to abort on any warnings
21+
```
2022

2123
## Deployment
2224

docs/home/ResearchGroups.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ tags:
1111
There are many institutions conducting Soar research all over the world. In the
1212
following subsections, you can find links to some of them:
1313

14-
- [University of Michigan Soar Group](http://soar.eecs.umich.edu/UofMSoarGroup)
14+
- [University of Michigan Soar Group](http://soar.eecs.umich.edu/UofMSoarGroup)
1515
A full listing of all members of the University of Michigan Soar group and Alumnae
16-
- [Other Academic Institutions](./OtherAcademicInstitutions.md)
16+
- [Other Academic Institutions](./OtherAcademicInstitutions.md)
1717
A listing of various research groups around the world who use Soar in their work.
18-
- [Commercial Soar Organizations](./CommercialSoarOrganizations.md)
18+
- [Commercial Soar Organizations](./CommercialSoarOrganizations.md)
1919
A listing of companies that use Soar in commercial applications or consulting work.
20-
Soar researchers keep in touch via the soar-group email mailing lists, which you can join on this page.
20+
Soar researchers keep in touch via the soar-group email mailing lists, which
21+
you can join on this page.
2122

2223
If you would like to have a link to your research group or company listed on
23-
these pages, please send a brief summary and the URL to [email protected] with the
24-
subject "Soar Research Group".
24+
these pages, please send a brief summary and the URL to [John Laird]
25+
(mailto:[email protected]) with the subject "Soar Research Group".

main.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# This file is used by Mkdocs-Macros to define macros that can be used in the
2+
# markdown files. The macros are defined in the `define_env` function and can
3+
# be used in the markdown files by using the `{{macro_name}}` syntax.
4+
15
def define_env(env):
26
"Defines macros for Mkdocs-Macros"
37

0 commit comments

Comments
 (0)