vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

filterMarkdown - multiple declarations

Function filterMarkdown

Returns a Markdown filtered HTML string.

string filterMarkdown (
  string str,
  MarkdownFlags flags
) @trusted;

string filterMarkdown (
  string str,
  scope MarkdownSettings settings = null
) @trusted;

Function filterMarkdown

Markdown filters the given string and writes the corresponding HTML to an output range.

void filterMarkdown(R) (
  ref R dst,
  string src,
  MarkdownFlags flags
);

void filterMarkdown(R) (
  ref R dst,
  string src,
  scope MarkdownSettings settings = null
);
Authors

Sönke Ludwig

Copyright

© 2012-2019 Sönke Ludwig

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.