- To generate the HTML version of your documentation run
make html
. - The hdmf-docutils package must be installed.
-
extension description
- Edit
source/description.rst
to describe your extension.
- Edit
-
release notes
- Edit
source/release_notes.rst
to document improvements and fixes of your extension.
- Edit
-
documentation build settings
- Edit
source/conf.py
to customize your extension documentation configuration. - Edit
source/conf_doc_autogen.py
to customize the format documentation auto-generation based on the YAML specification files.
- Edit
The specification documentation uses Sphinx http://www.sphinx-doc.org/en/stable/index.html
To rebuild the full documentation in html, latex, and PDF simply run:
make fulldoc
This is a convenience function that is equivalent to:
make allclean
make apidoc
make html
make latexpdf
The format documentation is auto-generated from the format specification (YAML) sources via:
make apidoc
This will invoke the executable:
hdmf_generate_format_docs
The script automatically generates a series of .rst, .png, and .pdf files that are stored in the folder source/format_auto_docs
. The generated .rst files are included in source/format.rst
and the png and pdf files are used as figures in the autogenerated docs.
The folder source/format_auto_docs
is reserved for autogenerated files, i.e., files in the folder should not be added or edited by hand as they will be deleted and rebuilt during the full built of the documentation.
By default the Sphinx configuration is setup to always regenerate the sources whenever the docs are being built (see next section). This behavior can be customized via the spec_doc_rebuild_always
parameter in source/conf.py
To build the documentation, run:
make <doctype>
where <doctype>
is, e.g., latexpdf
, html
, singlehtml
, or man
. For a complete list of supported doc-types, see:
make help
make clean
cleans up all builds of the documentation located in _build
.
make allclean
cleans up all builds of the documentation located in _build
as well as all autogenerated sources stored in source/format_auto_docs
.
The build of the documentation can be customized via a broad range of Sphinx options in:
source/conf_doc_autogen.py
In addition to standard Sphinx options, there are a number of additional options used to customize the content and structure of the autogenerated documents, e.g.:
spec_show_yaml_src
- Boolean indicating whether the YAML sources should be included for the different Neurodata typesspec_generate_src_file
- Boolean indicating whether the YAML sources of the neurodata_types should be rendered in a separate section (True) or in the same location as the main documentationspec_show_hierarchy_plots
- Boolean indicating whether we should generate and show figures of the hierarchy defined by the specifications as part of the documentationspec_file_per_type
- Boolean indicating whether we should generate separate .inc reStructuredText for each neurodata_type (True) or should all text be added to the main file (False)spec_show_subgroups_in_tables
- Should subgroups of the main groups be rendered in the table as well. Usually this is disabled since groups are rendered as separate sections in the textspec_appreviate_main_object_doc_in_tables
- Abbreviate the documentation of the main object for which a table is rendered in the table. This is commonly set to True as doc of the main object is already rendered as the main intro for the section describing the objectspec_show_title_for_tables
- Add a title for the table showing the specifications.spec_show_subgroups_in_seperate_table
- Should top-level subgroups be listed in a separate table or as part of the main dataset and attributes tablespec_table_depth_char
- Char to be used as prefix to indicate the depth of an object in the specification hierarchy. NOTE: The char used should be supported by LaTeX.spec_add_latex_clearpage_after_ndt_sections
- Add a LaTeX clearpage after each main section describing a neurodata_type. This helps in LaTeX to keep the ordering of figures, tables, and code blocks consistent in particular when the hierarchy_plots are included.spec_resolve_type_inc
- Resolve includes to always show the full list of objects that are part of a type (True) or to show only the parts that are actually new to a current type while only linking to base types (False)
In addition, the location of the input format specification can be customized as follows:
spec_input_spec_dir
- Directory where the YAML files for the namespace to be documented are locatedspec_input_namespace_filename
- Name of the YAML file with the specification of the Namespace to be documentedspec_input_default_namespace
- Name of the default namespace in the file
Finally, the name and location of output files can be customized as follows:
spec_output_dir
- Directory where the autogenerated files should be storedspec_output_master_filename
- Name of the master .rst file that includes all the autogenerated docsspec_output_doc_filename
- Name of the file where the main documentation goesspec_output_src_filename
- Name of the file where the sources of the format spec go. NOTE: This file is only generated ifspec_generate_src_file
is enabledspec_output_doc_type_hierarchy_filename
- Name of the file containing the type hierarchy. (Included inspec_output_doc_filename
)
In the regular Sphinx source/conf.py
file, we can then also set:
spec_doc_rebuild_always
- Boolean to define whether to always rebuild the source docs from YAML when doing a regular build of the sources (e.g., viamake html
) even if the folder with the source files already exists