Class: Nanoc::Filters::ColorizeSyntax::Colorizers::Abstract Private
- Inherits:
-
Object
- Object
- Nanoc::Filters::ColorizeSyntax::Colorizers::Abstract
- Extended by:
- DDPlugin::Plugin
- Defined in:
- lib/nanoc/filters/colorize_syntax/colorizers.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Direct Known Subclasses
CoderayColorizer, DummyColorizer, PygmentizeColorizer, PygmentsrbColorizer, RougeColorizer, SimonHighlightColorizer
Instance Method Summary collapse
- #postprocess(_language, _element) ⇒ Object private
- #process(_code, _language, params = {}) ⇒ Object private
Instance Method Details
#postprocess(_language, _element) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
11 |
# File 'lib/nanoc/filters/colorize_syntax/colorizers.rb', line 11 def postprocess(_language, _element); end |
#process(_code, _language, params = {}) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
7 8 9 |
# File 'lib/nanoc/filters/colorize_syntax/colorizers.rb', line 7 def process(_code, _language, params = {}) raise NotImplementedError end |