| 更新: | 2025-10-15 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2025.3 |
| URL: | https://voluntas.github.io/ |
typo などは https://x.com/voluntas までご連絡ください。
| # -*- coding: utf-8 -*- | |
| # | |
| # Sphinx extension for renaming _static/ directory | |
| # | |
| # Author: Takeshi KOMIYA / License: BSD | |
| # | |
| import re | |
| import os | |
| import shutil |
| cookbook 'build-essential' | |
| cookbook 'openssl' | |
| cookbook 'mysql', | |
| :git => 'https://github.com/9minutesnooze/mysql.git', | |
| :branch => 'mysql56' |
| // vim: ft=javascript: | |
| /*jslint sloppy: true, vars: true, white: true, nomen: true, browser: true */ | |
| /*global SpreadsheetApp, UiApp, UrlFetchApp, Utilities */ | |
| /* | |
| * A script to automate requesting data from an external url that outputs CSV data. | |
| * | |
| * Adapted from the Google Analytics Report Automation (magic) script. | |
| * @author [email protected] (Nick Mihailovski) | |
| * @author [email protected] (Ian Lewis) | |
| */ |
| 更新: | 2025-10-15 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2025.3 |
| URL: | https://voluntas.github.io/ |
typo などは https://x.com/voluntas までご連絡ください。
| How to write | |
| 1. pip install sphinxjp.themecore | |
| 2. pip install <なにか新しいtinkererのテーマ> 例: sphinxjp.themes.newtinker | |
| 3. 'sphinxjp.themecore' をextentionsに追加する | |
| 例: extensions = ['tinkerer.ext.blog', 'tinkerer.ext.disqus', 'sphinxjp.themecore'] | |
| 4. html_theme = "<なにか新しいtinkererのテーマ>" と書く | |
| 5. ヽ(゚∀゚ヽ 三 ノ゚∀゚)ノ ワーイ |
| 日時: | 2025-05-13 |
|---|---|
| 作: | 時雨堂 |
| バージョン: | 2025.3 |
| URL: | https://shiguredo.jp/ |
言語
| reST のいけてないところ。 | |
| ========================= | |
| 普段書くテキストと同じような感じで書いていけるのが reST のいいところなんだけど、 | |
| ちょっとした時にインデントで文句を言われることがあるよね。 | |
| (例えば、こんなふうに括弧付きで補足を入れたりするときに、 | |
| 括弧の中で改行したあと、一文字インデントしたくならないかしら...) |
conf.py に以下の設定を追加する
html_theme_options = {
'nosidebar': True,
}
ドキュメントの先頭に以下の内容を書く
| # rbenv setting | |
| require 'capistrano-rbenv' | |
| set :rbenv_ruby_version, '1.9.3-p374' | |
| namespace :rbenv do | |
| task :setup_shellenv do | |
| set :default_environment, { | |
| 'RBENV_ROOT' => "#{rbenv_path}", | |
| 'PATH' => "#{rbenv_path}/shims:#{rbenv_path}/bin:$PATH" |