aozorahack/aozora2html

View on GitHub
lib/aozora2html/tag/inline.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class Aozora2Html
  class Tag
    # インラインタグ用class
    #
    # 全ての青空記法はHTML elementに変換される
    # したがって、block/inlineの区別がある
    # 全ての末端青空classはどちらかのclassのサブクラスになる必要がある
    class Inline < Aozora2Html::Tag
      def initialize(*_args)
        super()
      end
    end
  end
end