Caffeinated_Markup_Language
view release on metacpan or search on metacpan
t/documents.t view on Meta::CPAN
#!/usr/bin/env perl
use strict;
use Test::More;
use Test::Exception;
use Text::CaffeinatedMarkup::HTMLFormatter;
my $data = "Yup, we're here! Caffeinated Panda Creations has launched the first phase of our new website.\n\nRight now as you can see the blog is up and running and we'll be using it to keep you up to date with projects, events we're involved with, a...
my $formatter = Text::CaffeinatedMarkup::HTMLFormatter->new;
lives_ok{$formatter->format($data)} "Document #1 parse ok";
done_testing();
t/html_formatter.t view on Meta::CPAN
}
# ------------------------------------------------------------------------------
sub test_full_doc_1 {
subtest "Full doc #1" => sub {
my $input_pml = <<EOT
Yup, we're here! **Caffeinated Panda Creations** has launched the first phase of our new website.
Right now as you can see the blog is up and running and we'll be using it to keep you up to date with projects, events we're involved with, and new features coming to the site. Of course we'll still be streaming updates and content on [[http://facebo...
As time goes on we'll be adding new sections to the website so stay tuned for updates. Upcoming soon will be more details on our creations and services, so here's some things to whet your appetite!
==
||
## Custom Cyberfalls
{{cyberfalls.jpg|<<,H100,W130}}Cyberfalls for all your cybergoth and dance needs, at Caffeinated Panda Creations we specialise in custom designs and sets with [[https://www.google.co.uk/search?q=el+wire&safe=off&tbm=isch|EL-wire]] installations.
Whether you're looking for a themed set for a special occassion or straight forward cyber-chic, get in touch and we'll be happy to work with you!
||
## 3D Printing
t/html_formatter.t view on Meta::CPAN
## Costuming
{{mask.jpg|<<,H100,W130}}The panda team are keen costumers and going forward will be working on several exciting cosplaying projects for ourselves and others.
We'll also be keeping you up to date on where we'll be appearing and giving details on how we can work with you on your own costuming projects.
==
EOT
;
my $expected_html =<<EOT
<p>Yup, we're here! <strong>Caffeinated Panda Creations</strong> has launched the first phase of our new website.</p>
<p>Right now as you can see the blog is up and running and we'll be using it to keep you up to date with projects, events we're involved with, and new features coming to the site. Of course we'll still be streaming updates and content on ...
<p>As time goes on we'll be adding new sections to the website so stay tuned for updates. Upcoming soon will be more details on our creations and services, so here's some things to whet your appetite!</p>
<div class="clearfix col-2">
<div class="column">
<h2>Custom Cyberfalls</h2>
<img src="cyberfalls.jpg" class="pulled-left" width="130px" height="100px"><p>Cyberfalls for all your cybergoth and dance needs, at Caffeinated Panda Creations we specialise in custom designs and sets with <a href="https://www.google.co.uk/search?q=e...
<p>Whether you're looking for a themed set for a special occassion or straight forward cyber-chic, get in touch and we'll be happy to work with you!</p>
</div>
<div class="column">
( run in 0.241 second using v1.01-cache-2.11-cpan-a5abf4f5562 )