Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kurema/aozora2htmlsharp
aozora2htmlのC#移植版。
https://github.com/kurema/aozora2htmlsharp
aozorabunko aozorahack console-tool dotnet6
Last synced: 28 days ago
JSON representation
aozora2htmlのC#移植版。
- Host: GitHub
- URL: https://github.com/kurema/aozora2htmlsharp
- Owner: kurema
- License: mit
- Created: 2021-06-18T20:16:38.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-06-27T23:25:34.000Z (over 1 year ago)
- Last Synced: 2024-05-02T02:38:20.171Z (6 months ago)
- Topics: aozorabunko, aozorahack, console-tool, dotnet6
- Language: C#
- Homepage:
- Size: 2.71 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aozora2htmlSharp
[aozorahack/aozora2html](https://github.com/aozorahack/aozora2html)のC#版です。## v1.0
移植元v3.0.0準拠の実装をv1.0系統にしています。
挙動だけでなくメソッド名やテストもほぼ同じです。v2.0以降はその限りではありません。
* [ドキュメント](docs/v1.0/readme.md)
* [branch](https://github.com/kurema/aozora2htmlSharp/tree/v1.0)
* [Release](https://github.com/kurema/aozora2htmlSharp/releases/tag/v1.0.0)## 実行
コマンドは`aozora2html`です。以下のように実行します。```shell-session
$ aozora2html foo.txt foo.html
```こうすると、青空文庫記法で書かれた`foo.txt`を`foo.html`に変換します。
また、青空文庫サイトで配布している、中にテキストファイルが同梱されているzip形式のファイルも変換できます。
```shell-session
$ aozora2html foo.zip foo.html
```第1引数にURLを指定すると、そのURLのファイルをダウンロードして変換します。
```shell-session
$ aozora2html http://example.jp/foo/bar.zip foo.html
```第2引数を省略すると、ファイルではなく標準出力に変換結果を出力します。
```shell-session
$ aozora2html foo.txt
```コマンドラインオプションとして`--gaiji-dir`と`--css-files`、`--use-jisx0213`、`--use-unicode`、`--check-newline`があります。
* `--gaiji-dir`は外字画像のパスを指定します。
* `--css-files`はCSSファイルを`,`区切りで指定します。
* `--use-jisx0213`はJIS X 0213の外字画像を使わず、数値実体参照として表示します。
* `--use-unicode`はUnicodeのコードポイントが指定されている外字を数値実体参照として表示します。
* `--check-newline false`は改行コードのチェックを省略します。可能な限り数値実体参照を使って表示するには、以下のようにオプションを指定します。
```shell-session
$ aozora2html --use-jisx0213 --use-unicode foo.txt
```## 関連
| レポジトリ | 概要 |
| -- | -- |
| [aozorahack/aozora2html](https://github.com/aozorahack/aozora2html) | Rubyで実装されたオリジナル。 |
| [kurema/AozoraGaijiChukiXml](https://github.com/kurema/AozoraGaijiChukiXml) | [青空文庫・外字注記辞書【第八版】](https://www.aozora.gr.jp/gaiji_chuki/)のXML形式。 |
| [kurema/JISX0213Table](https://github.com/kurema/JISX0213Table) | 派生レポジトリ。本プロジェクト用JIS X 0213テーブルを別レポジトリに分離したもの。ただしライブラリの分割はしない。 |## License
MITCC0にすることも考えましたが、依存ライブラリの関係でどちらにせよ著作権表記の省略はできません。