Acme-Markdown-Embarrassing

 view release on metacpan or  search on metacpan

IMAGES.pod  view on Meta::CPAN

=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 

MANIFEST  view on Meta::CPAN

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)

README.md  view on Meta::CPAN

# Acme::Markdown::Embarrasing

#### Include relative image `![](test.png)`
![](test.png)

#### Include relative image `![](./test.png)`
![](./test.png)

#### Include absolute internal non versioned image `![](https://metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing/test.png)`
![](https://metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing/test.png)

#### Include absolute internal image `![](https://metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing-1.6/test.png)`
![](https://metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing-1.6/test.png)

#### Include absolute fastapi image `![](https://fastapi.metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing-1.6/test.png)`
![](https://fastapi.metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing-1.6/test.png)

#### Include absolute external image `![](https://raw.githubusercontent.com/thibaultduponchelle/Acme-Markdown-Embarrassing/master/test.png)`
![](https://raw.githubusercontent.com/thibaultduponchelle/Acme-Markdown-Embarrassing/master/test.png)


# Title 1
## Title 2
### Title 3
#### Title 4
##### Title 5
###### Title 6

Title 1

README.md  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
![](https://raw.githubusercontent.com/thibaultduponchelle/Acme-Markdown-Embarrassing/master/tux.png)

### SVG
![](https://raw.githubusercontent.com/thibaultduponchelle/Acme-Markdown-Embarrassing/master/tux.svg)

## Tables

| Pos         | Club        | Points      | 
|:------------|:-----------:|:-----------:| 
|      1      | OM          | 12          |   
|      2      | St Etienne  | 9           |    

README.md  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://raw.githubusercontent.com/thibaultduponchelle/Acme-Markdown-Embarrassing/master/tux.png)](https://linuxfr.org/)

## Emoji
🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪

🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺

🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪

🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺

README.md  view on Meta::CPAN

<br/>
<br/>
Multiple
<br/>
<br/>
<br/>
<br/>
Lines

## Huge image
![huge](https://raw.githubusercontent.com/thibaultduponchelle/Acme-Markdown-Embarrassing/master/huge.png)

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 `![](test.png)`
![](test.png)

#### Include relative image `![](./test.png)`
![](./test.png)

#### Include absolute internal non versioned image `![](https://metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing/test.png)`
![](https://metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing/test.png)

#### Include absolute internal image `![](https://metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing-1.6/test.png)`
![](https://metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing-1.6/test.png)

#### Include absolute fastapi image `![](https://fastapi.metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing-1.6/test.png)`
![](https://fastapi.metacpan.org/source/CONTRA/Acme-Markdown-Embarrassing-1.6/test.png)

#### Include absolute external image `![](https://raw.githubusercontent.com/thibaultduponchelle/Acme-Markdown-Embarrassing/master/test.png)`
![](https://raw.githubusercontent.com/thibaultduponchelle/Acme-Markdown-Embarrassing/master/test.png)


# 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
![](https://raw.githubusercontent.com/thibaultduponchelle/Acme-Markdown-Embarrassing/master/tux.png)

### SVG
![](https://raw.githubusercontent.com/thibaultduponchelle/Acme-Markdown-Embarrassing/master/tux.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://raw.githubusercontent.com/thibaultduponchelle/Acme-Markdown-Embarrassing/master/tux.png)](https://linuxfr.org/)

## Emoji
🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪

🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺

🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪 🐪

🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺 🐺

lib/Acme/Markdown/Embarrassing.pm  view on Meta::CPAN

<br/>
<br/>
Multiple
<br/>
<br/>
<br/>
<br/>
Lines

## Huge image
![huge](https://raw.githubusercontent.com/thibaultduponchelle/Acme-Markdown-Embarrassing/master/huge.png)


# 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

tux.svg  view on Meta::CPAN

   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 )