Community
    • Login
    1. Home
    2. Popular
    Log in to post
    • All Time
    • Day
    • Week
    • Month
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics

    • All categories
    • B

      Why headings are not displayed in the function list menu ?

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      11
      1
      0 Votes
      11 Posts
      225 Views
      B
      @PeterJones Thank YOU so much I copy Your overrideMap & udl_markdown in my folder and problem is solved. I wish program by default have this option. Thank you again dear Peter
    • Keith CollyerK

      wireloom in markdown viewers

      Watching Ignoring Scheduled Pinned Locked Moved Notepad++ & Plugin Development
      2
      0 Votes
      2 Posts
      76 Views
      rdipardoR
      Provided you have MS Edge installed, here’s an example that works fine with the Preview HTML plugin: [image: 1789063091044-preview-html-wireloom.png] <!DOCTYPE html> <html> <head> <title>wireloom demo</title> </head> <body> <div id="container"></div> <script type="module"> import wireloom from 'https://cdn.jsdelivr.net/npm/wireloom@0.7.0/+esm'; wireloom.initialize({ theme: 'default' }); // Render a source string to an SVG string. const { svg } = await wireloom.render('my-diagram',` window "Sign in": header: text "Welcome" panel: input placeholder="Email" input placeholder="Password" type=password button "Sign in" primary `); document.getElementById('container').innerHTML = svg; </script> </body> </html>