Sha256: 510543c57b442a1b2f06a04a1723e2e9cb222c006bdc74b02e1bfc2d04f5e3de

Contents?: true

Size: 1.8 KB

Versions: 36

Compression:

Stored size: 1.8 KB

Contents

#!/usr/bin/env ruby
require 'html/pipeline'

require 'optparse'

# Accept "help", too
ARGV.map!{|a| a == "help" ? "--help" : a }

OptionParser.new do |opts|
  opts.banner = <<-HELP.gsub(/^    /, '')
    Usage: html-pipeline [-h] [-f]
           html-pipeline [FILTER [FILTER [...]]] < file.md
           cat file.md | html-pipeline [FILTER [FILTER [...]]]
  HELP

  opts.separator "Options:"

  opts.on("-f", "--filters", "List the available filters") do
    filters = HTML::Pipeline.constants.grep(/\w+Filter$/).
      map{|f| f.to_s.gsub(/Filter$/,'') }

    # Text filter doesn't work, no call method
    filters -= ["Text"]

    abort <<-HELP.gsub(/^      /, '')
      Available filters:
        #{filters.join("\n        ")}
    HELP
  end
end.parse!

# Default to a GitHub-ish pipeline
if ARGV.empty?

  filters = [
    HTML::Pipeline::MarkdownFilter,
    HTML::Pipeline::SanitizationFilter,
    HTML::Pipeline::ImageMaxWidthFilter,
    HTML::Pipeline::EmojiFilter,
    HTML::Pipeline::AutolinkFilter,
    HTML::Pipeline::TableOfContentsFilter,
  ]

  # Add syntax highlighting if linguist is present
  begin
    require 'linguist'
    filters << HTML::Pipeline::SyntaxHighlightFilter
  rescue LoadError
  end

else

  def filter_named(name)
    case name
    when "Text"
      raise NameError # Text filter doesn't work, no call method
    when "Textile"
      require "RedCloth" # Textile filter doesn't require RedCloth
    end

    HTML::Pipeline.const_get("#{name}Filter")
  rescue NameError => e
    abort "Unknown filter '#{name}'. List filters with the -f option."
  end

  filters = []
  until ARGV.empty?
    name = ARGV.shift
    filters << filter_named(name)
  end

end

context = {
  :asset_root => "/assets",
  :base_url   => "/",
  :gfm        => true
}

puts HTML::Pipeline.new(filters, context).call(ARGF.read)[:output]

Version data entries

36 entries across 36 versions & 3 rubygems

Version Path
html-pipeline-linuxfr-0.14.23 bin/html-pipeline
html-pipeline-linuxfr-0.14.22 bin/html-pipeline
html-pipeline-linuxfr-0.14.21 bin/html-pipeline
html-pipeline-linuxfr-0.14.20 bin/html-pipeline
html-pipeline-linuxfr-0.14.19 bin/html-pipeline
html-pipeline-linuxfr-0.14.18 bin/html-pipeline
html-pipeline-linuxfr-0.14.17 bin/html-pipeline
html-pipeline-linuxfr-0.14.16 bin/html-pipeline
html-pipeline-linuxfr-0.14.15 bin/html-pipeline
html-pipeline-linuxfr-0.14.14 bin/html-pipeline
html-pipeline-linuxfr-0.14.13 bin/html-pipeline
html-pipeline-linuxfr-0.14.12 bin/html-pipeline
html-pipeline-linuxfr-0.14.11 bin/html-pipeline
html-pipeline-linuxfr-0.14.10 bin/html-pipeline
html-pipeline-linuxfr-0.14.9 bin/html-pipeline
html-pipeline-linuxfr-0.14.8 bin/html-pipeline
html-pipeline-linuxfr-0.14.7 bin/html-pipeline
html-pipeline-0.3.1 bin/html-pipeline
html-pipeline-0.3.0 bin/html-pipeline
html-pipeline-0.2.1 bin/html-pipeline