require 'pathname' require 'redcarpet' require 'active_support/concern' require 'active_support/core_ext/object/blank' module Dionysus module Redcarpet module Includes extend ActiveSupport::Concern included do if method_defined?(:preprocess) alias_method_chain :preprocess, :includes else alias_method :preprocess, :preprocess_with_includes end end def preprocess_with_includes(full_document) lines = full_document.split($/) lines.each_with_index do |ln, i| if m = ln.match(/\A\s*<<<\s*(\S+)\s*\Z/) path = Pathname.new(m[1]) if path.file? newlines = path.readlines newlines.collect! {|ln| ln.chomp} newlines.shift while(newlines.first.blank?) newlines.pop while(newlines.last.blank?) lines[i] = newlines else warn "[WARNING] Cannot find path %s to include"%[path.to_s] end end end lines.flatten.join("\n") end end end end Redcarpet::Render::HTML.send(:include, Dionysus::Redcarpet::Includes)