#!/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\n", "Simple blockquote" ); is( $parser->parse("> First line\n> Second line"), "Quote text
\n
\n\n", "Multi-line blockquote" ); is( $parser->parse("> Quote with **bold**"), "First line
\nSecond line
\n
\n\n", "Blockquote with formatting" );Quote with bold
\n