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