はじめに
今回はDocFX
というドキュメント生成ツールを使い、Unityプロジェクトのドキュメントを作っちゃおうという記事になります。
DocFXをインストールする
DocFX
にはインストール方法がたくさんあるようですが、私はHomebrew
を使ってインストールしていきたいと思います。
- Chocolatey: choco install docfx -y.
- Homebrew (owned by community): brew install docfx.
- GitHub: download and unzip docfx.zip from https://github.com/dotnet/docfx/releases, extract it to a local folder, and add it to PATH so you can run it anywhere.
- NuGet: nuget install docfx.console. docfx.exe is under folder docfx.console/tools/.
Getting Started with DocFX | DocFX website
以下のコマンドをターミナルに打ち込んでいきます。
$ brew install docfx
出力先のフォルダを作成する
作業フォルダを作成したい場所に移動(今回はGitHub Actions
を使ったりせず、純粋にドキュメントをお試しで作成しようという方針なのでDesktop
等の好きな場所で大丈夫です)し、以下のコマンドを打ち込みます。
$ docfx init -q -o <ディレクトリ名>
docfx init helps generate an docfx.json file.
docfx.exe User Manual | DocFX website
すると以下のようなファイル群が構成されます。
<ディレクトリ名> |-- api | |-- index.md | |-- toc.yml |-- apidoc |-- articles | |-- intro.md | |-- toc.yml |-- docfx.json |-- images |-- index.md |-- src |-- toc.yml
また初期のdocfx.json
は以下のような内容になります。
{ "metadata": [ { "src": [ { "files": [ "src/**.csproj" ] } ], "dest": "api", "disableGitFeatures": false, "disableDefaultFilter": false } ], "build": { "content": [ { "files": [ "api/**.yml", "api/index.md" ] }, { "files": [ "articles/**.md", "articles/**/toc.yml", "toc.yml", "*.md" ] } ], "resource": [ { "files": [ "images/**" ] } ], "overwrite": [ { "files": [ "apidoc/**.md" ], "exclude": [ "obj/**", "_site/**" ] } ], "dest": "_site", "globalMetadataFiles": [], "fileMetadataFiles": [], "template": [ "default" ], "postProcessors": [], "markdownEngineName": "markdig", "noLangKeyword": false, "keepFileLink": false, "cleanupCacheHistory": false, "disableGitFeatures": false } }
それぞれのプロパティについては公式ドキュメントの3. docfx.json Format
に一覧になって記載をされていました。
dotnet.github.io
ドキュメント化する
Unityプロジェクトの.csproj
とAssets
フォルダをDocFXの作業ディレクトリのsrc
フォルダの中に格納してください。
あとは以下のコマンドを打ち込み,ビルドを行います。
$ docfx metadata
docfx.exe User Manual | DocFX website
$ docfx build
docfx.exe User Manual | DocFX website
無事にビルドが終わると、_site
フォルダが作成されその中にサイトのデータが入っています。
最後に以下のコマンドを打ち、http://localhost:8080
にサイトを立ち上げ確認してみましょう。
$ docfx --serve
さいごに
GitHub Actions
を利用して、GitHubにプッシュすると自動でドキュメントを更新&GitHub Pages
に公開する記事も後で書きたいなぁと思っています。
ではまた。