Last active
August 29, 2015 14:05
-
-
Save hackugyo/7e84a63e2d399130d504 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # これは設定ファイル例です。修正して~/.rst2pdf/configに置いてください。 | |
| [general] | |
| # カンマ区切りのカスタムスタイルシートのリスト。 | |
| # 例:"fruity.json,a4paper.json,verasans.json" | |
| stylesheets="~/.rst2pdf/ja.json" | |
| # 圧縮されたPDFを生成 | |
| # 使用する true/false (全て小文字) もしくは 1/0 | |
| # 例: compressed=true | |
| compressed=false | |
| # コロン区切りのフォントサーチパスのリスト | |
| # 例: font_path="/usr/share/fonts:/usr/share/texmf-dist/fonts/" | |
| font_path="~/.rst2pdf/" | |
| # 言語のハイフネーションサポート | |
| language="ja_JP" | |
| # デフォルトのページヘッダとページフッタ | |
| header="###Title###" | |
| footer="###Page### / ###Total###" | |
| # リテラルブロックが大きすぎる場合の処理 | |
| # shrink/truncate/overflow | |
| fit_mode="shrink" | |
| # 改ページ処理のヘッディング最大レベルを指定します。 | |
| # 0は改ページ処理のレベルを設定しないことを意味します。 | |
| break_level=0 | |
| # 画像サイズのデフォルト | |
| default_dpi=94 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "embeddedFonts" : | |
| [["migmix-1p-regular.ttf","migmix-1p-bold.ttf","migmix-1p-regular.ttf","migmix-1p-bold.ttf"]], | |
| "fontsAlias" : { | |
| "stdFont": "migmix-1p-regular", | |
| "stdBold": "migmix-1p-bold", | |
| "stdItalic": "migmix-1p-bold", | |
| "stdBoldItalic": "migmix-1p-bold", | |
| "stdMono": "migmix-1p-regular" | |
| }, | |
| "styles" : [ | |
| ["base" , { | |
| "wordWrap": "CJK" | |
| }], | |
| ["literal" , { | |
| "wordWrap": "None" | |
| }] | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment