7 lines
197 B
Plaintext
7 lines
197 B
Plaintext
|
#!/bin/fish
|
||
|
|
||
|
# embed image as base64 data-uri: -a data-uri
|
||
|
# disable google font: -a webfonts!
|
||
|
# output direactory: -D <output_dir>
|
||
|
asciidoctor -a data-uri -a webfonts! -D $output_dir $input_file
|