class Kramdown::Converter::Latex
def convert_ul(el, opts)
def convert_ul(el, opts) if !@data[:has_toc] && el.options.dig(:ial, :refs)&.include?('toc') @data[:has_toc] = true '\tableofcontents' else latex_environment(el.type == :ul ? 'itemize' : 'enumerate', el, inner(el, opts)) end end