class Asciidoctor::Stylesheets

def pygments_stylesheet_data style = nil

returns the [String] Pygments stylesheet data

Public: Generate the Pygments stylesheet with the specified style.
def pygments_stylesheet_data style = nil
  style ||= DEFAULT_PYGMENTS_STYLE
  (@pygments_stylesheet_data ||= load_pygments)[style] ||= ::Pygments.css '.listingblock .pygments', :classprefix => 'tok-', :style => style
end