GithubHelp home page GithubHelp logo

Comments (3)

jmuheim avatar jmuheim commented on August 20, 2024

I'm doing it like this:

# config/initializers/action_controller.rb
# Inspired by https://github.com/karnov/htmltoword/blob/master/lib/htmltoword/action_controller.rb
require 'rack/test'
require 'action_controller'

Mime::Type.register 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', :docx

ActionController::Renderers.add :docx do |filename, options|
  # Converting works great except < and > are escaped in codes!
  # http://stackoverflow.com/questions/30916575/converting-markdown-to-docx-using-pandoc-and-signs-in-code-is-translated-to
  # https://github.com/alphabetum/pandoc-ruby/issues/14
  document = PandocRuby.convert render_to_string(options), to: :docx
  send_data document, filename:    "#{filename}.docx",
                      type:        Mime::DOCX,
                      disposition: 'attachment'
end

module ActionController
  # For respond_with default
  class Responder
    def to_docx
      if @default_response
        @default_response.call(options)
      else
        controller.render({ docx: controller.action_name }.merge(options))
      end
    end
  end
end

Now you can simply use views that create markdown, e.g. app/views/users/show.docx.erb:

# Some title

## Hello, <%= user.name %>!

This is a paragraph.

I guess by tweaking the PandocRuby options you can easily provide HTML instead of markdown (just change the input format option).

from pandoc-ruby.

skarmakar avatar skarmakar commented on August 20, 2024

@jmuheim is it possible apply css styling for html to docx conversion? as far I have checked with inline css, it does not work. I found --css option in pandoc documentation, but nothing mentioned whether applicable for docx.

from pandoc-ruby.

jmuheim avatar jmuheim commented on August 20, 2024

I didn't check this out myself yet, but you can specify a template to be used:

pandoc -S --reference-docx twocolumns.docx -o UsersGuide.docx README

See http://pandoc.org/demos.html.

from pandoc-ruby.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.