mirror of
https://github.com/brain-hackers/README
synced 2024-12-22 20:20:03 +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 -->
|
**Brain Hackers Wiki へようこそ!**
|
||||||
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
||||||
### 目次
|
|
||||||
|
|
||||||
- [U-Boot](#u-boot)
|
- [Wikiの管理](Wiki%E3%81%AE%E7%AE%A1%E7%90%86)
|
||||||
- [Linux](#linux)
|
# Linux
|
||||||
|
- [ビルド](Linux---%E3%83%93%E3%83%AB%E3%83%89)
|
||||||
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
# U‐Boot
|
||||||
|
- [起動 (EBOOT)](U%E2%80%90Boot---%E8%B5%B7%E5%8B%95-%28EBOOT%29)
|
||||||
## U-Boot
|
- [起動 (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)
|
||||||
- USB Recovery によるブート
|
- [手動](U%E2%80%90Boot---%E3%83%93%E3%83%AB%E3%83%89---%E6%89%8B%E5%8B%95)
|
||||||
- NK.BIN によるブート
|
|
||||||
|
|
||||||
## Linux
|
|
||||||
|
|
||||||
- ビルド
|
|
||||||
- U-Boot からのブート
|
|
||||||
|
4
Makefile
4
Makefile
@ -3,6 +3,6 @@ doctoc:
|
|||||||
doctoc --title "### 目次" .
|
doctoc --title "### 目次" .
|
||||||
|
|
||||||
.PHONY:
|
.PHONY:
|
||||||
generate-sidebar:
|
generate:
|
||||||
python3 gen_sidebar.py
|
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)
|
[Home](Home)
|
||||||
|
|
||||||
|
@ -29,10 +29,15 @@ def main():
|
|||||||
md.convert(raw)
|
md.convert(raw)
|
||||||
|
|
||||||
with open('_Sidebar.md', 'w') as f:
|
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')
|
f.write('[Home](Home)\n\n')
|
||||||
recurse(f, fn_tree, idfn)
|
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):
|
def recurse(f, d, idfn, level=1):
|
||||||
for k, child_dict in d.items():
|
for k, child_dict in d.items():
|
Loading…
Reference in New Issue
Block a user