#!/usr/bin/env perl use strict; use warnings; use Test::More tests => 3; use MarkdownParser; my $parser = MarkdownParser->new(); is( $parser->parse("> Quote text"), "
\n

Quote text

\n
\n", "Simple blockquote" ); is( $parser->parse("> First line\n> Second line"), "
\n

First line

\n

Second line

\n
\n", "Multi-line blockquote" ); is( $parser->parse("> Quote with **bold**"), "
\n

Quote with bold

\n
\n", "Blockquote with formatting" );