class Jekyll::Converters::Identity
For more info on converters see jekyllrb.com/docs/plugins/converters/
Identity converter. Returns same content as given.
def convert(content)
content - String content of file (without front matter).
Logic to do the content conversion.
def convert(content) content end
def matches(_ext)
_ext - The String extension to check (not relevant here)
Takes one argument: the file's extension (including the dot).
Public: Does the given extension match this converter's list of acceptable extensions?
def matches(_ext) true end
def output_ext(ext)
ext - The String extension or original file.
Public: The extension to be given to the output file (including the dot).
def output_ext(ext) ext end