Interface LineWriter


public interface LineWriter
  • Method Details

    • wrap

      static LineWriter wrap(Writer w)
    • writeSection

      default void writeSection(String sectionTitle, String... args)
      A default ## section
    • writeSection1

      default void writeSection1(String section1Title, String... args)
      A main # section
    • writeToc

      default void writeToc()
    • write

      void write(String string, String... args)
      If no arguments are given, the string is written as-is. With arguments, the string is used as a pattern and the arguments are the replacements, using String#format
      Parameters:
      string -
      args -
    • writeLine

      default void writeLine(String line, String... args)
    • table

      default MarkdownTool.Table table()