LibreOffice Conference 2014 Bern, Switzerland Report (in Japanese)Naruhiko Ogasawara
?
(EN) A short report of LibreOffice Conference 2014 Bern, Switzerland, for Kanto LibreOffice meetup.
(JP) スイスはベルンで行われたLibreOffice 2014のレポートです。9月度の関東LibreOfficeオフ向け資料。
LibreOffice Conference 2014 Bern, Switzerland Report (in Japanese)Naruhiko Ogasawara
?
(EN) A short report of LibreOffice Conference 2014 Bern, Switzerland, for Kanto LibreOffice meetup.
(JP) スイスはベルンで行われたLibreOffice 2014のレポートです。9月度の関東LibreOfficeオフ向け資料。
This document provides an overview of Sphinx, an open source documentation generator. It discusses Sphinx's capabilities like generating documentation from reStructuredText, supporting over 100 programming languages, and being able to build documentation for websites, ebooks or other formats. It also provides instructions on installing Sphinx on Windows, Mac and Ubuntu systems and includes examples of using Sphinx markup like code blocks, tables and images.
Dev Containers Customization Short versionTakao Tetsuro
?
describe customization of dev containers, it has three ways how to containerization.
First is that add dev container configuration to existing program. And define the base image of dev container that is runtime of programming language as require for your project then add features. The last one is that create program with .net template then dev containerize.
6. Sphinx-quickstart実行時に設定を確認してく
るので順番に設定を行う。
ドキュメントのルートパス設定
Enter the root path for documentation.
>Root path for the documentation [.]:[enter]
出力先ディレクトリ設定を_buildにするかsource/buildフォルダに分離する
か設定
You have two options for placing the build directory for Sphinx output.
Either, you use a directory "_build" within the root path, or you separate
"source" and "build" directories within the root path.
> Separate source and build directories (y/N) [n]:[enter](おすすめはy)
7. カスタムHTMLテンプレート(templates)と静的処理用(static)フォルダの接頭
語設定
Inside the root directory, two more directories will be created; "_templates"
for custom HTML templates and "_static" for custom stylesheets and other
static
files. You can enter another prefix (such as ".") to replace the underscore.
> Name prefix for templates and static dir [_]:[enter]
プロジェクト名と作成者名の設定
The project name will occur in several places in the built documentation.
>Project name: project_name
> Author name(s): Hoge
8. プロジェクトのバージョン指定(プロジェクトのバージョンとリリースを
分離するかを指定)
Sphinx has the notion of a "version" and a "release" for the
software. Each version can have multiple releases. For example, for
Python the version is something like 2.5 or 3.0, while the release is
something like 2.5.1 or 3.0a1. If you don't need this dual structure,
just set both to the same value.
> Project version:1.0.0
> Project release [1.0.0]:[enter]
ファイルの拡張子の設定
The file name suffix for source files. Commonly, this is either ".txt"
or ".rst". Only files with this suffix are considered documents.
> Source file suffix [.rst]:[enter]
9. ルートノードの設定(ドキュメントのルートファイルを何にするか指定)
One document is special in that it is considered the top node of the
"contents tree", that is, it is the root of the hierarchical structure
of the documents. Normally, this is "index", but if your "index"
document is a custom template, you can also set this to another filename.
> Name of your master document (without suffix) [index]:[enter]
Epub形式の出力に対応するか
Sphinx can also add configuration for epub output:
> Do you want to use the epub builder (y/N) [n] :[enter]
10. 拡張機能を指定する場合に設定。(あとから追加可能)
Please indicate if you want to use one of the following Sphinx extensions:
> autodoc: automatically insert docstrings from modules (y/N) [n]:[enter]
> doctest: automatically test code snippets in doctest blocks (y/N) [n]:[enter]
> intersphinx: link between Sphinx documentation of different projects (y/N) [n]:[enter]
> todo: write "todo" entries that can be shown or hidden on build (y/N) [n]:[enter]
> coverage: checks for documentation coverage (y/N) [n]:[enter]
> pngmath: include math, rendered as PNG images (y/N) [n]:[enter]
> mathjax: include math, rendered in the browser by MathJax (y/N) [n]:[enter]
> ifconfig: conditional inclusion of content based on config values (y/N) [n]:[enter]
> viewcode: include links to the source code of documented Python objects (y/N)
[n]:[enter]
11. ドキュメント生成用make file(make.bat)を作成するかを設定
A Makefile and a Windows command file can be generated for you so
that you
only have to run e.g. `make html' instead of invoking sphinx-build
directly.
> Create Makefile? (Y/n) [y]:[enter]
> Create Windows command file? (Y/n) [y]:[enter]
クロスコンパイルを検討するのなら両方作成していてもいいと思う。
ドキュメントの環境をビルドごとに綺麗にして、デプロイしたい場合には、
バッチ等でビルドファイル削除後、ビルドするバッチを作っておくと便利。