Skip to content

support multi-line image urls #103

@richardwthompson

Description

@richardwthompson

I have been using Gravizo (http://gravizo.com/) in my markdown documents to allow me to incorporate diagrams.

This works great when I actually generate the html files from my markdown docs.

The only down side is that the multimarkdown preview doesn't support this ... which I assume is down to the image url being split over multiple lines.

Is there any way that the multimarkdown preview functionality could be updated to support / render multi-line image urls?

E.g. the following works when I generate the full html file ... but it doesn't work with multimarkdown preview

 ![Alt text](http://g.gravizo.com/g?
  digraph G {
    aize ="4,4";
    main [shape=box];
    main -> parse [weight=8];
    parse -> execute;
    main -> init [style=dotted];
    main -> cleanup;
    execute -> { make_string; printf}
    init -> make_string;
    edge [color=red];
    main -> printf [style=bold,label="100 times"];
    make_string [label="make a string"];
    node [shape=box,style=filled,color=".7 .3 1.0"];
    execute -> compare;
  }
)

![Alt text](http://g.gravizo.com/g?
digraph G {
aize ="4,4";
main [shape=box];
main -> parse [weight=8];
parse -> execute;
main -> init [style=dotted];
main -> cleanup;
execute -> { make_string; printf}
init -> make_string;
edge [color=red];
main -> printf [style=bold,label="100 times"];
make_string [label="make a string"];
node [shape=box,style=filled,color=".7 .3 1.0"];
execute -> compare;
})

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions