summaryrefslogtreecommitdiff
path: root/docs/modules/syntax-highlighting/examples/extended-pygments-syntax-highlighter.rb
blob: e1a0d348e7d6c7980e5dd220329640efa222328a (plain) (blame)
1
2
3
4
5
6
7
class ExtendedPygmentsSyntaxHighlighter < (Asciidoctor::SyntaxHighlighter.for 'pygments')
  register_for 'pygments'

  def docinfo? location
    false
  end
end