Sha256: 30fbdcf0c1dd544570786bd934019595ae665e3d2435b4dd34bab9280a9a9983
Contents?: true
Size: 915 Bytes
Versions: 1
Compression:
Stored size: 915 Bytes
Contents
require 'docx_generator' DocxGenerator::DSL::Document.new("basic_paragraph") do |doc| doc.paragraph do |par| par.alignment :center par.text "Title" do |t| t.underline style: "double" t.size 20 t.caps true end par.newline end doc.paragraph do |par| par.text "Simple string of text and" par.text "some formatted text" do |t| t.bold true t.italics true t.underline style: "single" end end doc.paragraph do |par| par.text "Antoine", bold: true, small_caps: true par.text "How are you today?" end doc.paragraph do |par| par.text "John", bold: true, small_caps: true par.text "(whispering)", bold: true, italics: true par.text "How are you today?" end doc.paragraph(alignment: :center) do |par| par.text "A simple chemical formula: CO" par.no_space par.text "2", subscript: true end doc.save end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
docx_generator-0.1.1 | examples/basic_document_with_blocks.rb |