Skip to content

Commit da96396

Browse files
committed
docs: move DEVELOPMENT.md
Signed-off-by: Unai Martinez-Corral <[email protected]>
1 parent 11d36b8 commit da96396

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

.github/workflows/tuttest.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
paths:
66
- 'syn/symbiflow-yosys/*'
77
- '.github/workflows/tuttest.yml'
8-
- 'DEVELOPMENT.md'
8+
- 'docs/DEVELOPMENT.md'
99
push:
1010
paths:
1111
- 'syn/symbiflow-yosys/*'
1212
- '.github/workflows/tuttest.yml'
13-
- 'DEVELOPMENT.md'
13+
- 'docs/DEVELOPMENT.md'
1414
workflow_dispatch:
1515

1616
env:
@@ -36,11 +36,11 @@ jobs:
3636

3737
- name: Grab install-prerequisites commands with tuttest
3838
run: |
39-
echo "# DEVELOPMENT.md/install-prerequisites" >$SCRIPT
39+
echo "# docs/DEVELOPMENT.md/install-prerequisites" >$SCRIPT
4040
echo >>$SCRIPT
4141
# SED changes URL in case the CI is running on a fork
4242
# and adds conda-eda as a directory name
43-
tuttest DEVELOPMENT.md install-prerequisites | sed -e "s#git clone .*\.git.*#git clone https://github.com/$GITHUB_REPOSITORY.git conda-eda#" >>$SCRIPT
43+
tuttest docs/DEVELOPMENT.md install-prerequisites | sed -e "s#git clone .*\.git.*#git clone https://github.com/$GITHUB_REPOSITORY.git conda-eda#" >>$SCRIPT
4444
echo >>$SCRIPT
4545
4646
- name: Add checkout commands
@@ -57,9 +57,9 @@ jobs:
5757
5858
- name: Grab prepare-and-build commands with tuttest
5959
run: |
60-
echo "# DEVELOPMENT.md/prepare-and-build" >>$SCRIPT
60+
echo "# docs/DEVELOPMENT.md/prepare-and-build" >>$SCRIPT
6161
echo >>$SCRIPT
62-
tuttest DEVELOPMENT.md prepare-and-build >>$SCRIPT
62+
tuttest docs/DEVELOPMENT.md prepare-and-build >>$SCRIPT
6363
6464
- name: Print ${{ env.SCRIPT }}
6565
run: cat $SCRIPT
File renamed without changes.

docs/conf.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,20 @@
88
extensions = [
99
"sphinx.ext.extlinks",
1010
"sphinx.ext.intersphinx",
11+
"myst_parser"
1112
]
1213

1314
source_suffix = {
1415
".rst": "restructuredtext",
16+
".md": "markdown"
1517
}
1618

19+
myst_enable_extensions = [
20+
"colon_fence",
21+
]
22+
23+
numfig = True
24+
1725
master_doc = "index"
1826
project = "Conda recipes for FPGA EDA tools"
1927
copyright = "2019-2022, hdl/conda-* contributors"

docs/index.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ Conda recipes for FPGA EDA tools
66
:align: center
77
:target: https://github.com/hdl/conda-eda
88

9-
.. raw:: html
9+
.. toctree::
1010

11-
<br>
12-
13-
<hr>
11+
DEVELOPMENT.md

docs/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
sphinx
2+
myst-parser

0 commit comments

Comments
 (0)