Is a document template processor for Word docx
files. It leverages Word's
built-in formatting and layouting capabilities to make it easy to create your
templates.
Note: Sablon is still in early development. If you encounter any issues along the way please report.
Add this line to your application's Gemfile:
gem 'sablon'
require "sablon"
template = Sablon.template(File.expand_path("~/Desktop/template.docx"))
context = {
title: "Fabulous Document",
technologies: ["Ruby", "Markdown", "ODF"]
}
template.render_to_file File.expand_path("~/Desktop/output.docx"), context
Sablon templates are normal word documents (.docx
) sprinkled with MergeFields
to perform operations. The following section will use the notation «=title»
to
refer to Word MailMerge fields.
The most basic operation is to insert content. The contents of a context variable can be inserted using a field like:
«=title»
It's also possible to call a method on a context object using:
«=post.title»
NOTE: The dot operator can also be used to perform a hash lookup. This means that it's not possible to call methods on a hash instance. Sablon will always try to make a lookup instead.
Sablon can render parts of the template conditonally based on the value of a context variable. Conditional fields are inserted around the content.
«technologies:if»
... arbitrary document markup ...
«technologies:endIf»
This will render the enclosed markup only if the expression is truthy.
Note that nil
, false
and []
are considered falsy. Everything else is
truthy.
For more complex conditionals you can use a predicate like so:
«body:if(present?)»
... arbitrary document markup ...
«body:endIf»
Loops repeat parts of the document.
«technologies:each(technology)»
... arbitrary document markup ...
... use `technology` to refer to the current item ...
«technologies:endEach»
Loops can be used to repeat table rows or list enumerations. The fields need to be placed in within table cells or enumeration items enclosing the rows or items to repeat. Have a look at the example template for more details.
It is possible to nest loops and conditionals.
The sablon
executable can be used to process templates on the command-line.
The usage is as follows:
cat <context path>.json | sablon <template path> <output path>
Have a look at this test for an example.
There is a sample template in the repository, which illustrates the functionality of sablon:
Processing this template with some sample data yields the following output document. For more details, check out this test case.
- Fork it ( https://github.com/[my-github-username]/sablon/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
The following projects address a similar goal and inspired the work on Sablon: