Maruku v0.5.5 Release Notes

    • 🔋 Features:

      • Input of HTML numeric entities:

        Examples of numeric character references include © or ©
        for the copyright symbol, Α or Α for the Greek capital
        letter alpha, and ا or ا for the Arabic letter alef.
        

        Examples of numeric character references include © or © for the copyright symbol, Α or Α for the Greek capital letter alpha, and ا or ا for the Arabic letter alef.

    • 🐛 Bug fixes:

      • Alt text was ignored for images.
      • Fixed minor bug in reading HTML inside paragraph.
      • Changed rules for block-level HTML to make it similar to Markdown.pl. For example:

        Paragraph
        <div></div>
        

        will be translated to

        <p>Paragraph
        <div></div></p>
        

        while this:

        Paragraph
        
        <div></div>
        

        becomes

        <p>Paragraph</p>
        
        <div></div>
        
    • Pending bugs: there are some problems when parsing lists. It is difficult to get it right because the spec is very fuzzy. At the moment, list items cannot be indented by more than 1 space.