5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# File 'lib/octopress-printable/config.rb', line 5
def self.default_config
"posts_dir: \"_posts\"\nprintables_dir: \"assets/printables\"\nsource_dir: \".\"\nblog_url: \"http://example.com\" # used in pdf post_links\nbibliography_dir: \"_bibliography\"\nbibliography: \"references.bib\"\n\n# only convert markdowns, without running pandoc and xelatex\ndry_run : false\n\n# debug files\ndump_tex_file: false\ndump_markdown_file: false\ndump_bib_file: false\ndump_cmds: false\nkeep_tmp_files: false\n\n"
end
|