HtmlToMarkdown.LinkStyle (html_to_markdown v3.5.3)

Copy Markdown

Link rendering style in Markdown output.

Controls whether links and images use inline [text](url) syntax or reference-style [text][1] syntax with definitions collected at the end.

Summary

Types

t()

Link rendering style in Markdown output.

Functions

Inline links: [text](url). Default.

Reference-style links: [text][1] with [1]: url at end of document.

Types

t()

@type t() :: :inline | :reference

Link rendering style in Markdown output.

Functions

inline()

@spec inline() :: t()

Inline links: [text](url). Default.

reference()

@spec reference() :: t()

Reference-style links: [text][1] with [1]: url at end of document.