Skip to content

Commit

Permalink
doc: create guide subdirectory
Browse files Browse the repository at this point in the history
Problem: documentation in the top level doc directory is not
going to scale out very well.

Create a 'guide' subdirectory and move the build and support pages
there.

Change the spellcheck script so that it spell *.rst in that directory.
  • Loading branch information
garlick committed Sep 29, 2023
1 parent 544f916 commit 1a01a11
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions doc/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -394,9 +394,9 @@ EXTRA_DIST = \
domainrefs.py \
index.rst \
index_man.rst \
build.rst \
support.rst \
images/lgplv3-147x51.png \
guide/build.rst \
guide/support.rst \
guide/images/lgplv3-147x51.png \
$(RST_FILES) \
man1/index.rst \
man1/index_general.rst \
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes.
4 changes: 2 additions & 2 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Table of Contents
.. toctree::
:maxdepth: 2

build
support
guide/build
guide/support
index_man
python/index
2 changes: 1 addition & 1 deletion doc/test/spellcheck
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

if test $man_base_dir; then
set ${man_base_dir}/*.rst ${man_base_dir}/man*/*.rst ${man_base_dir}/man*/common/*.rst
set ${man_base_dir}/*.rst ${man_base_dir}/guide/*.rst ${man_base_dir}/man*/*.rst ${man_base_dir}/man*/common/*.rst
fi

if test $# == 0; then
Expand Down

0 comments on commit 1a01a11

Please sign in to comment.