pandoc をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
文書変換ツール
#code(nonumber){{
[root@c ~]# yum --enablerepo=epel install pandoc
}}
[[wget]]で取得したhtmlらを単純にtextへ変換するには
#code(nonumber){{
#bin/bash
for i in `find . -name *.html`;do
echo $i ${i%*}.txt
pandoc -o ${i%*}.txt $i
done
}}
でできる
utf8/sjis問題が、、、
終了行:
文書変換ツール
#code(nonumber){{
[root@c ~]# yum --enablerepo=epel install pandoc
}}
[[wget]]で取得したhtmlらを単純にtextへ変換するには
#code(nonumber){{
#bin/bash
for i in `find . -name *.html`;do
echo $i ${i%*}.txt
pandoc -o ${i%*}.txt $i
done
}}
でできる
utf8/sjis問題が、、、
ページ名:
1