Crates.io | gendoc |
lib.rs | gendoc |
version | 0.4.1 |
source | src |
created_at | 2020-09-26 17:51:21.180394 |
updated_at | 2022-02-13 13:20:03.643601 |
description | Simple document generator from yaml template |
homepage | |
repository | |
max_upload_size | |
id | 293203 |
size | 18,035 |
Simple document generator with template yaml file
Run gendoc
with gendoc.yaml
file
$ cat gendoc.yaml
filename: test_<datetime>.rb
body: |
# frozen_string_literal: true
require 'json'
puts JSON.parse("{}")
$ gendoc
Document generated: ./test_20200927023752.rb
$ cat test_20200927023752.rb
# frozen_string_literal: true
require 'json'
puts JSON.parse("{}")
$ ruby test_20200927023752.rb
{}
There are some setting parameters.
parameter | info | required |
---|---|---|
filename |
A filename of a generated document. | ○ |
body |
A body of a generated document. | ○ |
dir |
A directory of a generated document. It will be parsed as a relative path (ex: tmp -> ./tmp ). gendoc does NOT create a new directory on generation time. |
There are some meta tags which are converted on generation time.
meta tag | info |
---|---|
<date> |
Converted to formatted date. Format is YYYYmmdd . (ex: <date> -> 19720719 ) |
<date:_format_string_> |
Same as <date> , and you can pass an format string. (ex: <date:%Y-%m-%d> -> 1972-07-19 ) |
<datetime> |
Converted to formatted datetime. Format is YYYYmmddHHMMSS . (ex: <datetime> -> 19720719000545 ) |
<datetime:_format_string_> |
Same as <datetime> , and you can pass an format string. (ex: <datetime:%Y-%m-%d-%H%M%S> -> 1972-07-19-000545 ) |
<input> |
Converted to input text. You should pass text from STDIN on generation time. |
To get more info abount format string, see here.
Here's a sample gendoc.yaml
to set multiple settings.
sample1:
filename: sample1.txt
body: |
this is a 1st setting
saple2:
filename: sample2.txt
body: |
this is a 2nd setting
Run gendoc
with a setting name.
$ gendoc sample2
Document generated: sample2.txt
$ cat sample2.txt
this is a 2nd setting
<input>
tag. (<input>
with the same argument will be filled with the same value.)