Acme-Markdown-Embarrassing
view release on metacpan or search on metacpan
=head1 IMAGES.pod
POD file placed at root of distribution
=head1 IMAGE (RELATIVE test.png)
=begin html
<div style="display: flex">
<div style="margin: 3px; flex: 1 1 50%">
<img alt="Test" src="test.png" style="max-width: 100%">
</div>
</div>
=end html
=head1 IMAGE (RELATIVE ./test.png)
=begin html
<div style="display: flex">
<div style="margin: 3px; flex: 1 1 50%">
<img alt="Test" src="./test.png" style="max-width: 100%">
</div>
</div>
=end html
=head1 IMAGE (RELATIVE ../../../test.png)
=begin html
<div style="display: flex">
<div style="margin: 3px; flex: 1 1 50%">
<img alt="Test" src="../../../test.png" style="max-width: 100%">
</div>
</div>
=end html
=head1 IMAGE (ROOT RELATIVE /test.png)
=begin html
<div style="display: flex">
<div style="margin: 3px; flex: 1 1 50%">
<img alt="Test" src="/test.png" style="max-width: 100%">
</div>
</div>
=end html
=head1 IMAGE FROM SOURCE (ABSOLUTE)
=begin html
<div style="display: flex">
<div style="margin: 3px; flex: 1 1 50%">
<img alt="Test" src="https://metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing-1.6/test.png" style="max-width: 100%"">
</div>
</div>
=end html
=head1 IMAGE FROM FASTAPI (ABSOLUTE)
=begin html
<div style="display: flex">
<div style="margin: 3px; flex: 1 1 50%">
<img alt="Test" src="https://fastapi.metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing-1.6/test.png" style="max-width: 100%">
</div>
</div>
=end html
=head1 IMAGE FROM GITHUB (ABSOLUTE)
=begin html
<div style="display: flex">
<div style="margin: 3px; flex: 1 1 50%">
<img alt="Test" src="https://raw.githubusercontent.com/thibaultduponchelle/Acme-Markdown-Embarrassing/master/test.png" style="max-width: 100%">
</div>
</div>
=end html
=cut
Changes
lib/Acme/Markdown/Embarrassing.pm
Makefile.PL
MANIFEST This list of files
README.md
t/00-load.t
t/manifest.t
t/pod-coverage.t
t/pod.t
tux.svg
test.png
tux.png
huge.png
IMAGES.pod
ANOTHER.md
MarkdownTest.md
META.yml Module YAML meta-data (added by MakeMaker)
META.json Module JSON meta-data (added by MakeMaker)
# Acme::Markdown::Embarrasing
#### Include relative image ``

#### Include relative image ``

#### Include absolute internal non versioned image ``

#### Include absolute internal image ``

#### Include absolute fastapi image ``

#### Include absolute external image ``

# Title 1
## Title 2
### Title 3
#### Title 4
##### Title 5
###### Title 6
Title 1
### Indented with tab
#!/usr/bin/env perl
use Acme::LOLCAT;
print translate("You too can speak like a lolcat!") ."\n";
## Images
### PNG

### SVG

## Tables
| Pos | Club | Points |
|:------------|:-----------:|:-----------:|
| 1 | OM | 12 |
| 2 | St Etienne | 9 |
---
________________
## Links
[MetaCPAN](https://metacpan.org) or with title [MetaCPAN](https://metacpan.org "MetaCPAN")
<https://www.metacpan.org>
## Image with link
[](https://linuxfr.org/)
## Emoji
ðª ðª ðª ðª ðª ðª ðª ðª ðª ðª ðª ðª
ðº ðº ðº ðº ðº ðº ðº ðº ðº ðº ðº ðº
ðª ðª ðª ðª ðª ðª ðª ðª ðª ðª ðª ðª
ðº ðº ðº ðº ðº ðº ðº ðº ðº ðº ðº ðº
<br/>
<br/>
Multiple
<br/>
<br/>
<br/>
<br/>
Lines
## Huge image

lib/Acme/Markdown/Embarrassing.pm view on Meta::CPAN
See also L<https://metacpan.org/release/CONTRA/Acme-Markdown-Embarrassing-3.2/source/README.md>
See also L<https://metacpan.org/release/CONTRA/Acme-Markdown-Embarrassing-3.2/source/MarkdownTest.md>
=head1 MARKDOWN
=begin markdown
## IMAGES
#### Include relative image ``

#### Include relative image ``

#### Include absolute internal non versioned image ``

#### Include absolute internal image ``

#### Include absolute fastapi image ``

#### Include absolute external image ``

# Title 1
## Title 2
### Title 3
#### Title 4
##### Title 5
###### Title 6
Title 1
lib/Acme/Markdown/Embarrassing.pm view on Meta::CPAN
### Indented with tab
#!/usr/bin/env perl
use Acme::LOLCAT;
print translate("You too can speak like a lolcat!") ."\n";
## Images
### PNG

### SVG

## Tables
| Pos | Club | Points |
|:------------|:-----------:|:-----------:|
| 1 | OM | 12 |
| 2 | St Etienne | 9 |
lib/Acme/Markdown/Embarrassing.pm view on Meta::CPAN
---
________________
## Links
[MetaCPAN](https://metacpan.org) or with title [MetaCPAN](https://metacpan.org "MetaCPAN")
<https://www.metacpan.org>
## Image with link
[](https://linuxfr.org/)
## Emoji
ðª ðª ðª ðª ðª ðª ðª ðª ðª ðª ðª ðª
ðº ðº ðº ðº ðº ðº ðº ðº ðº ðº ðº ðº
ðª ðª ðª ðª ðª ðª ðª ðª ðª ðª ðª ðª
ðº ðº ðº ðº ðº ðº ðº ðº ðº ðº ðº ðº
lib/Acme/Markdown/Embarrassing.pm view on Meta::CPAN
<br/>
<br/>
Multiple
<br/>
<br/>
<br/>
<br/>
Lines
## Huge image

# Embed HTML (and IMAGES)
## IMAGE (RELATIVE test.png)
<div style="display: flex">
<div style="margin: 3px; flex: 1 1 50%">
<img alt="Test" src="test.png" style="max-width: 100%">
</div>
</div>
## IMAGE (RELATIVE ./test.png)
<div style="display: flex">
<div style="margin: 3px; flex: 1 1 50%">
<img alt="Test" src="./test.png" style="max-width: 100%">
</div>
</div>
## IMAGE (RELATIVE ../../../test.png)
<div style="display: flex">
<div style="margin: 3px; flex: 1 1 50%">
<img alt="Test" src="../../../test.png" style="max-width: 100%">
</div>
</div>
## IMAGE (ROOT RELATIVE /test.png)
<div style="display: flex">
<div style="margin: 3px; flex: 1 1 50%">
<img alt="Test" src="/test.png" style="max-width: 100%">
</div>
</div>
## IMAGE FROM SOURCE (ABSOLUTE)
<div style="display: flex">
<div style="margin: 3px; flex: 1 1 50%">
<img alt="Test" src="https://metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing-1.6/test.png" style="max-width: 100%"">
</div>
</div>
## IMAGE FROM FASTAPI (ABSOLUTE)
<div style="display: flex">
<div style="margin: 3px; flex: 1 1 50%">
<img alt="Test" src="https://fastapi.metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing-1.6/test.png" style="max-width: 100%">
</div>
</div>
## IMAGE FROM GITHUB (ABSOLUTE)
<div style="display: flex">
<div style="margin: 3px; flex: 1 1 50%">
<img alt="Test" src="https://raw.githubusercontent.com/thibaultduponchelle/Acme-Markdown-Embarrassing/master/test.png" style="max-width: 100%">
</div>
</div>
=end markdown
=cut
1; # End of Acme::Markdown::Embarrassing
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="300.66144"
height="400.81506"
id="svg3007"
version="1.1"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="tux.svg"
inkscape:export-filename="./Tux Mono.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs3009">
<inkscape:path-effect
effect="spiro"
id="path-effect29672-0"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
( run in 0.925 second using v1.01-cache-2.11-cpan-df04353d9ac )