Markright.Parsers.Blockquote (markright v0.7.1)
Parses the input for the blockquote block.
Examples
iex> input = "Hello
...> — _world_!
...>
...> Other text.
...> "
iex> Markright.Parsers.Blockquote.to_ast(input)
%Markright.Continuation{
ast: {:blockquote, %{}, [
"Hello\n — ", {:em, %{}, "world"}, "!"]},
tail: " Other text.\n "}
Link to this section Summary
Functions
Callback implementation for Markright.Parser.to_ast/2
.
Link to this section Functions
Link to this function
to_ast(input, plume \\ %Plume{})
Callback implementation for Markright.Parser.to_ast/2
.