aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/extensions/lang_attribute_processor.rb
blob: 65511bcc9302e3b681d51b4cf57fcb1304fc271b (plain)
1
2
3
4
5
6
7
8
9
module Nuldoc
  module Extensions
    class LangAttributeProcessor < Asciidoctor::Extensions::TreeProcessor
      def process(doc)
        doc.attributes['lang'] ||= 'ja-JP'
      end
    end
  end
end