cbmarkdown

Class Processor

lucee.Component
    extended by cbmarkdown.Processor

Ortus Markdown Module Copyright 2013 Ortus Solutions, Corp www.ortussolutions.com --- Convert markdown to HTML via the MarkdownJ Java library

Class Attributes:
  • singleton
  •  
  • synchronized : false
  •  
  • accessors : true
  •  
  • persistent : false
  •  
  • author : Luis Majano
  •  
    Property Summary
    type property default serializable required
    any javaloader
          Java loader class.

    • access = public
    • returntype = any
    true false
    any processor
          MarkdownJ processor.

    • access = public
    • returntype = any
    true false
    Constructor Summary
    init(any javaLoader)
          Constructor.
    Method Summary
    string getJavaloader()
    string getProcessor()
    any setJavaloader(any javaloader)
    any setProcessor(any processor)
    any toHTML(any txt)
         Convert markdown to HTML.
     
    Methods inherited from class lucee.Component
    None

    Constructor Detail

    init

    public init(any javaLoader)

    Constructor

    Parameters:
    javaLoader - The javaloader class

    Property Detail

    javaloader

    property any javaloader

    Java loader class

    Attributes:
    access - public
    required - false
    returntype - any
    serializable - true

    processor

    property any processor

    MarkdownJ processor

    Attributes:
    access - public
    required - false
    returntype - any
    serializable - true

    Method Detail

    getJavaloader

    public string getJavaloader()


    getProcessor

    public string getProcessor()


    setJavaloader

    public any setJavaloader(any javaloader)

    Parameters:
    javaloader

    setProcessor

    public any setProcessor(any processor)

    Parameters:
    processor

    toHTML

    public any toHTML(any txt)

    Convert markdown to HTML

    Parameters:
    txt - The markdown text to convert