https://github.com/naoty/qiita-build
Qiita item builder from a template and stdin
https://github.com/naoty/qiita-build
Last synced: about 1 month ago
JSON representation
Qiita item builder from a template and stdin
- Host: GitHub
- URL: https://github.com/naoty/qiita-build
- Owner: naoty
- License: mit
- Created: 2015-01-02T08:45:36.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-03T14:32:17.000Z (over 10 years ago)
- Last Synced: 2025-03-01T06:17:57.407Z (2 months ago)
- Language: Ruby
- Homepage: https://rubygems.org/gems/qiita-build
- Size: 121 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# qiita-build
Qiita item builder from a template and stdin
## Installation
```
$ gem install qiita-build
```## Usage
Given a below template,
```
# 自己紹介
* 氏名: %{fullname}
* ニックネーム: %{nickname}
* 居住地: %{location}
* 生年月日: %{birthday}
````qiita-build` will build an item from the template and stdin, like this.
```
$ echo '{"fullname": "Naoto Kanekoo", "nickname": "naoty", "location": "Tokyo", "birthday": "1987/6/2"}' | qiita-build -a -t
# 自己紹介
* 氏名: Naoto Kaneko
* ニックネーム: naoty
* 居住地: Tokyo
* 生年月日: 1987/6/2
```## Contributing
1. Fork it ( https://github.com/naoty/qiita-build/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request