mirror of
https://github.com/brain-hackers/README
synced 2024-12-22 12:10:04 +09:00
Update
parent
2ff527b577
commit
0faa8c5a87
30
Home.md
30
Home.md
@ -1,21 +1,13 @@
|
||||
Brain Hackers Wiki へようこそ!
|
||||
<!-- This file is generated by gen.py. DO NOT EDIT MANUALLY! -->
|
||||
|
||||
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
||||
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
||||
### 目次
|
||||
**Brain Hackers Wiki へようこそ!**
|
||||
|
||||
- [U-Boot](#u-boot)
|
||||
- [Linux](#linux)
|
||||
|
||||
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
||||
|
||||
## U-Boot
|
||||
|
||||
- ビルド
|
||||
- USB Recovery によるブート
|
||||
- NK.BIN によるブート
|
||||
|
||||
## Linux
|
||||
|
||||
- ビルド
|
||||
- U-Boot からのブート
|
||||
- [Wikiの管理](Wiki%E3%81%AE%E7%AE%A1%E7%90%86)
|
||||
# Linux
|
||||
- [ビルド](Linux---%E3%83%93%E3%83%AB%E3%83%89)
|
||||
# U‐Boot
|
||||
- [起動 (EBOOT)](U%E2%80%90Boot---%E8%B5%B7%E5%8B%95-%28EBOOT%29)
|
||||
- [起動 (USB Recovery)](U%E2%80%90Boot---%E8%B5%B7%E5%8B%95-%28USB-Recovery%29)
|
||||
### ビルド
|
||||
- [buildbrain](U%E2%80%90Boot---%E3%83%93%E3%83%AB%E3%83%89---buildbrain)
|
||||
- [手動](U%E2%80%90Boot---%E3%83%93%E3%83%AB%E3%83%89---%E6%89%8B%E5%8B%95)
|
||||
|
4
Makefile
4
Makefile
@ -3,6 +3,6 @@ doctoc:
|
||||
doctoc --title "### 目次" .
|
||||
|
||||
.PHONY:
|
||||
generate-sidebar:
|
||||
python3 gen_sidebar.py
|
||||
generate:
|
||||
python3 gen.py
|
||||
|
||||
|
@ -33,7 +33,7 @@ $ git clone https://github.com/brain-hackers/README.wiki.git
|
||||
|
||||
# ファイル名とサイドバーの関係
|
||||
|
||||
サイドバーの目次は、Wikiに含まれるMarkdown文書のファイル名から `gen_sidebar.py` で自動生成している。 `make generate-sidebar` で呼ぶことが出来る。Wiki に文書を追加する度に実行してコミットする。
|
||||
サイドバーの目次は、Wikiに含まれるMarkdown文書のファイル名から `gen.py` で自動生成している。 `make generate` で呼ぶことが出来る。Wiki に文書を追加する度に実行してコミットする。
|
||||
|
||||
ファイル名に ` > `(前後にスペース必須)が含まれていると、その左側はセクション名と解釈される。
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<!-- This file is generated by generate_toc.py. DO NOT EDIT MANUALLY! -->
|
||||
<!-- This file is generated by gen.py. DO NOT EDIT MANUALLY! -->
|
||||
|
||||
[Home](Home)
|
||||
|
||||
|
@ -29,10 +29,15 @@ def main():
|
||||
md.convert(raw)
|
||||
|
||||
with open('_Sidebar.md', 'w') as f:
|
||||
f.write('<!-- This file is generated by generate_toc.py. DO NOT EDIT MANUALLY! -->\n\n')
|
||||
f.write('<!-- This file is generated by gen.py. DO NOT EDIT MANUALLY! -->\n\n')
|
||||
f.write('[Home](Home)\n\n')
|
||||
recurse(f, fn_tree, idfn)
|
||||
|
||||
with open('Home.md', 'w') as f:
|
||||
f.write('<!-- This file is generated by gen.py. DO NOT EDIT MANUALLY! -->\n\n')
|
||||
f.write('**Brain Hackers Wiki へようこそ!**\n\n')
|
||||
recurse(f, fn_tree, idfn)
|
||||
|
||||
|
||||
def recurse(f, d, idfn, level=1):
|
||||
for k, child_dict in d.items():
|
Loading…
Reference in New Issue
Block a user