bitcababy / docx

a ruby library/gem for interacting with .docx files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docx

a ruby library/gem for interacting with .docx files

usage

install

requires ruby (only tested with 1.9.3 so far)

gem install docx

basic

require 'docx'

d = Docx::Document.open('example.docx')
d.each_paragraph do |p|
  puts d
end

advanced

require 'docx'

d = Docx::Document.open('example.docx')
d.each_paragraph do |p|
  p.each_text_run do |run|
    run.italicized?
    run.bolded?
    run.underlined?
    run.formatting
    run.text
  end
end

About

a ruby library/gem for interacting with .docx files

License:MIT License