Tcl Library Source Code

Ticket Change Details
Login
Overview

Artifact ID: 2c566a7b6c7afd3d790467efe1fb2bf358a2d037bd5665ce98ab4c18b9490cec
Ticket: 0d23817f75c666c912a812c6f1125b3406055f59
In package Markdown when a boolean attribute is used in an embedded html element, the rest of the markdown text is ignored.
User & Date: LawrenceWoodman 2018-06-09 06:27:36
Changes

  1. assignee changed to: "nobody"
  2. closer changed to: "nobody"
  3. cmimetype changed to: "text/plain"
  4. comment changed to:
     	
    
    In package Markdown when a boolean attribute is used in an embedded html element, the rest of the markdown text is ignored.  The following code demonstrates:
    
    package require tcltest
    namespace import tcltest::*
    package require Markdown
    
    test booleanattribute {embedded html using a boolean attribute} -body {
      Markdown::convert {
    hello
    
    <div allowfullscreen></div>
    
    hello again
      }
    } -result {<p>hello</p>
    
    <div allowfullscreen></div>
    
    <p>hello again</p>}
    
  5. foundin changed to: "1.19"
  6. is_private changed to: "0"
  7. login: "LawrenceWoodman"
  8. priority changed to: "5 Medium"
  9. private_contact changed to: "3ba4de09451f1f5bca00b37535ac0785027835e3"
  10. resolution changed to: "None"
  11. severity changed to: "Minor"
  12. status changed to: "Open"
  13. submitter changed to: "LawrenceWoodman"
  14. subsystem changed to: "A Category Is Missing"
  15. title changed to:
    In package Markdown when a boolean attribute is used in an embedded html element, the rest of the markdown text is ignored.
    
  16. type changed to: "Bug"