Rename "docs" folder "source"

master
Marc Gilleron 2021-01-21 22:40:15 +00:00
parent 354f0fdb0d
commit fb6e76a038
76 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,7 @@
site_name: Voxel Tools documentation
theme: readthedocs
# I had to specify this even though it's supposed to be the default
# See https://github.com/mkdocs/mkdocs/issues/2145#issuecomment-735342512
docs_dir: docs
docs_dir: source
nav:
- 'index.md'

View File

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

Before

Width:  |  Height:  |  Size: 774 KiB

After

Width:  |  Height:  |  Size: 774 KiB

View File

Before

Width:  |  Height:  |  Size: 101 KiB

After

Width:  |  Height:  |  Size: 101 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

View File

Before

Width:  |  Height:  |  Size: 154 KiB

After

Width:  |  Height:  |  Size: 154 KiB

View File

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 71 KiB

View File

Before

Width:  |  Height:  |  Size: 8.5 MiB

After

Width:  |  Height:  |  Size: 8.5 MiB

View File

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 58 KiB

View File

Before

Width:  |  Height:  |  Size: 804 KiB

After

Width:  |  Height:  |  Size: 804 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 944 KiB

After

Width:  |  Height:  |  Size: 944 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 60 KiB

View File

Before

Width:  |  Height:  |  Size: 122 KiB

After

Width:  |  Height:  |  Size: 122 KiB

View File

Before

Width:  |  Height:  |  Size: 279 KiB

After

Width:  |  Height:  |  Size: 279 KiB

View File

Before

Width:  |  Height:  |  Size: 89 KiB

After

Width:  |  Height:  |  Size: 89 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 130 KiB

After

Width:  |  Height:  |  Size: 130 KiB

View File

@ -15,3 +15,4 @@ Explore categories on the left to get started!
![Editor screenshot](images/graph_in_editor_with_fast_noise_lite.png)
![Smooth screenshot](images/smooth_screenshot.png)

View File

@ -22,6 +22,8 @@ import glob
import os
from pathlib import Path
SOURCES = "docs"
def update_classes_xml(custom_godot_path, godot_repo_root, verbose=False):
godot_executable = custom_godot_path
@ -80,11 +82,10 @@ def find_godot(bindir):
def update_mkdocs_file(mkdocs_config_fpath, md_classes_dir):
absolute_paths = md_classes_dir.glob("*.md")
class_files = []
docs_folder = mkdocs_config_fpath.parents[0] / 'docs'
docs_folder = mkdocs_config_fpath.parents[0] / SOURCES
for absolute_path in absolute_paths:
class_files.append(str(absolute_path.relative_to(docs_folder)).replace('\\', '/'))
class_files = sorted(class_files)
class_files = list(sorted(class_files))
with open(mkdocs_config_fpath, 'r', encoding='utf-8') as f:
lines = f.readlines()
@ -137,7 +138,7 @@ def main():
godot_executable = ""
godot_repo_root = my_path.parents[4]
md_path = my_path.parents[1] / 'docs/api'
md_path = my_path.parents[1] / SOURCES / 'api'
xml_path = my_path.parents[1] / 'classes'
mkdocs_config_path = my_path.parents[1] / 'mkdocs.yml'