Skip to content

Commit 9c29314

Browse files
committed
fix: docs scripts
1 parent 29d5539 commit 9c29314

4 files changed

Lines changed: 10 additions & 9 deletions

File tree

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"cSpell.words": [
44
"Dynamixel",
55
"configurator"
6-
]
6+
],
7+
"cmake.configureOnOpen": false
78
}

sphinx/copy.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
if not exist "..\docs" mkdir ..\docs
44
if not exist "..\wiki" mkdir ..\wiki
55

6-
XCOPY ".\_build\html" "..\docs" /s
6+
Rem XCOPY ".\_build\html" "..\docs" /s
77
XCOPY ".\_build\markdown" "..\wiki\v2" /s
88
XCOPY ".\source\*.md" "..\wiki\v2"
99

sphinx/serve.bat

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
@ECHO OFF
22

3-
echo.
4-
echo.+++ Making HTML files...
5-
echo.
6-
CALL make.bat html
3+
Rem echo.
4+
Rem echo.+++ Making HTML files...
5+
Rem echo.
6+
Rem CALL make.bat html
77

88
echo.
99
echo.+++ Making markdown files...

sphinx/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,19 @@
1414
#
1515
import os
1616
import sys
17-
from sphinx_markdown_builder.markdown_builder import MarkdownBuilder
1817
sys.path.insert(0, os.path.abspath('../../'))
1918
sys.path.insert(0, os.path.abspath('../../butter/mas'))
2019

2120
# -- Project information -----------------------------------------------------
2221

2322
project = 'Butter MAS Python API'
24-
copyright = '2021, Benny Megidish'
23+
copyright = '2024, Benny Megidish'
2524
author = 'Benny Megidish'
2625

2726
# The short X.Y version
2827
version = ''
2928
# The full version, including alpha/beta/rc tags
30-
release = '2.0.0'
29+
release = '2.5.0'
3130

3231

3332
# -- General configuration ---------------------------------------------------
@@ -43,6 +42,7 @@
4342
'sphinx.ext.autodoc',
4443
'sphinx.ext.napoleon',
4544
'sphinx.ext.githubpages',
45+
"sphinx_markdown_builder",
4646
'myst_parser'
4747
]
4848

0 commit comments

Comments
 (0)