<div class="grav-c-ostentatious-copy">
    <p>This is intended as a quick reference and showcase. For more complete info, see <a href="http://daringfireball.net/projects/markdown/">John Gruber's
            original spec</a> and the <a href="http://github.github.com/github-flavored-markdown/">Github-flavored Markdown info page</a>.</p>
    <h5>Table of Contents</h5>
    <p><a href="#headers">Headers</a><br>
        <a href="#emphasis">Emphasis</a><br>
        <a href="#lists">Lists</a><br>
        <a href="#links">Links</a><br>
        <a href="#images">Images</a><br>
        <a href="#code">Code and Syntax Highlighting</a><br>
        <a href="#tables">Tables</a><br>
        <a href="#blockquotes">Blockquotes</a><br>
        <a href="#html">Inline HTML</a><br>
        <a href="#hr">Horizontal Rule</a><br>
        <a href="#lines">Line Breaks</a><br>
        <a href="#videos">Youtube videos</a></p>
    <a name="headers"> ## Headers
        <pre><code class="language-no-highlight"># H1
## H2
### H3
#### H4
##### H5
###### H6

Alternatively, for H1 and H2, an underline-ish style:

Alt-H1
======

Alt-H2
------
</code></pre>
        <h1>H1</h1>
        <h2>H2</h2>
        <h3>H3</h3>
        <h4>H4</h4>
        <h5>H5</h5>
        <h6>H6</h6>
        <p>Alternatively, for H1 and H2, an underline-ish style:</p>
        <h1>Alt-H1</h1>
        <h2>Alt-H2</h2>
    </a><a name="emphasis"> ## Emphasis
        <pre style="overflow-y: auto" tabindex="0"><code class="language-no-highlight">Emphasis, aka italics, with *asterisks* or _underscores_.

Strong emphasis, aka bold, with **asterisks** or __underscores__.

Combined emphasis with **asterisks and _underscores_**.

Strikethrough uses two tildes. ~~Scratch this.~~
</code></pre>
        <p>Emphasis, aka italics, with <em>asterisks</em> or <em>underscores</em>.</p>
        <p>Strong emphasis, aka bold, with <strong>asterisks</strong> or <strong>underscores</strong>.</p>
        <p>Combined emphasis with <strong>asterisks and <em>underscores</em></strong>.</p>
        <p>Strikethrough uses two tildes. <s>Scratch this.</s></p>
    </a><a name="lists"> ## Lists
        <pre><code class="language-no-highlight">1. First ordered list item
2. Another item
  * Unordered sub-list.
1. Actual numbers don't matter, just that it's a number
  1. Ordered sub-list
4. And another item.

   Some text that should be aligned with the above item.

* Unordered list can use asterisks
- Or minuses
+ Or pluses
</code></pre>
        <ol>
            <li>First ordered list item</li>
            <li>Another item</li>
        </ol>
        <ul>
            <li>Unordered sub-list.</li>
        </ul>
        <ol>
            <li>
                <p>Actual numbers don't matter, just that it's a number</p>
            </li>
            <li>
                <p>Ordered sub-list</p>
            </li>
            <li>
                <p>And another item.</p>
                <p>Some text that should be aligned with the above item.</p>
            </li>
        </ol>
        <ul>
            <li>Unordered list can use asterisks</li>
        </ul>
        <ul>
            <li>Or minuses</li>
        </ul>
        <ul>
            <li>Or pluses</li>
        </ul>
    </a><a name="links"> ## Links <p>There are two ways to create links.</p>
        <pre style="overflow-y: auto" tabindex="0"><code class="language-no-highlight">[I'm an inline-style link](https://www.google.com)

[I'm a reference-style link][Arbitrary case-insensitive reference text]

[You can use numbers for reference-style link definitions][1]

Or leave it empty and use the [link text itself][]

Some text to show that the reference links can follow later.

[arbitrary case-insensitive reference text]: https://www.mozilla.org
[1]: http://slashdot.org
[link text itself]: http://www.reddit.com
</code></pre>
    </a>
    <p><a name="links"></a><a href="https://www.google.com">I'm an inline-style link</a></p>
    <p><a href="https://www.mozilla.org">I'm a reference-style link</a></p>
    <p><a href="http://slashdot.org">You can use numbers for reference-style link definitions</a></p>
    <p>Or leave it empty and use the <a href="http://www.reddit.com">link text itself</a></p>
    <p>Some text to show that the reference links can follow later.</p>
    <a name="images"> ## Images
        <pre style="overflow-y: auto" tabindex="0"><code class="language-no-highlight">Here's an image (hover to see the title text):

Inline-style:
![alt text](https://placeimg.com/48/48/any "Image Title Text 1")

Reference-style:
![alt text][logo]

[logo]: https://placeimg.com/48/48/any "Image Title Text 2"
</code></pre>
        <p>Here's our logo (hover to see the title text):</p>
        <p>Inline-style: <img src="https://placeimg.com/320/180/any" alt="alt text" title="Image Title Text 1"></p>
        <p>Reference-style: <img src="https://placeimg.com/320/180/any" alt="alt text" title="Image Title Text 2"></p>
    </a><a name="code"> ## Code and Syntax Highlighting </a>
    <p><a name="code">Code blocks are part of the Markdown spec, but syntax highlighting isn't. However, many renderers --
            like Github's and <em>Markdown Here</em> -- support syntax highlighting. <em>Markdown Here</em> supports highlighting for dozens of languages (and
            not-really-languages, like diffs and HTTP headers); to see the complete list, and how to write the language names, see the </a><a href="http://softwaremaniacs.org/media/soft/highlight/test.html">highlight.js
            demo page</a>.</p>
    <pre><code class="language-no-highlight">Inline `code` has `back-ticks around` it.
</code></pre>
    <p>Inline <code>code</code> has <code>back-ticks around</code> it.</p>
    <p>Blocks of code are either fenced by lines with three back-ticks <code>```</code>, or are indented with four spaces. I recommend only using the fenced
        code blocks -- they're easier and only they support syntax highlighting.</p>
    <pre><code class="language-no-highlight"> ```javascript
 var s = "JavaScript syntax highlighting";
 alert(s);
</code></pre>
    <pre><code class="language-python">s = "Python syntax highlighting"
print s
</code></pre>
    <pre><code style="overflow-y: auto" tabindex="0">No language indicated, so no syntax highlighting.
But let's throw in a &lt;b&gt;tag&lt;/b&gt;.
</code></pre>
    <pre><code>
```javascript
var s = "JavaScript syntax highlighting";
alert(s);
</code></pre>
    <pre><code class="language-python">s = "Python syntax highlighting"
print s
</code></pre>
    <pre><code style="overflow-y: auto" tabindex="0">No language indicated, so no syntax highlighting in Markdown Here (varies on Github).
But let's throw in a &lt;b&gt;tag&lt;/b&gt;.
</code></pre>
    <p>Again, to see what languages are available for highlighting, and how to write those language names, see the <a href="http://softwaremaniacs.org/media/soft/highlight/test.html">highlight.js
            demo page</a>.</p>
    <a name="tables"> ## Tables <p>Tables aren't part of the core Markdown spec, but they are part of GFM and <em>Markdown Here</em> supports them. They are
            an easy way of adding tables to your email -- a task that would otherwise require copy-pasting from another application.</p>
        <pre style="overflow-y: auto" tabindex="0"><code class="language-no-highlight">Colons can be used to align columns.

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |

The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.

Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3
</code></pre>
        <p>Colons can be used to align columns.</p>
        <table>
            <thead>
                <tr>
                    <th>Tables</th>
                    <th style="text-align:center">Are</th>
                    <th style="text-align:right">Cool</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>col 3 is</td>
                    <td style="text-align:center">right-aligned</td>
                    <td style="text-align:right">$1600</td>
                </tr>
                <tr>
                    <td>col 2 is</td>
                    <td style="text-align:center">centered</td>
                    <td style="text-align:right">$12</td>
                </tr>
                <tr>
                    <td>zebra stripes</td>
                    <td style="text-align:center">are neat</td>
                    <td style="text-align:right">$1</td>
                </tr>
            </tbody>
        </table>
        <p>The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.</p>
        <table>
            <thead>
                <tr>
                    <th>Markdown</th>
                    <th>Less</th>
                    <th>Pretty</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td><em>Still</em></td>
                    <td><code>renders</code></td>
                    <td><strong>nicely</strong></td>
                </tr>
                <tr>
                    <td>1</td>
                    <td>2</td>
                    <td>3</td>
                </tr>
            </tbody>
        </table>
    </a><a name="blockquotes"> ## Blockquotes
        <pre style="overflow-y: auto" tabindex="0"><code class="language-no-highlight">&gt; Blockquotes are very handy in email to emulate reply text.
&gt; This line is part of the same quote.

Quote break.

&gt; This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.
</code></pre>
        <blockquote>
            <p>Blockquotes are very handy in email to emulate reply text. This line is part of the same quote.</p>
        </blockquote>
        <p>Quote break.</p>
        <blockquote>
            <p>This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap
                for everyone. Oh, you can <em>put</em> <strong>Markdown</strong> into a blockquote.</p>
        </blockquote>
    </a><a name="html"> ## Inline HTML <p>You can also use raw HTML in your Markdown, and it'll mostly work pretty well.</p>
        <pre style="overflow-y: auto" tabindex="0"><code class="language-no-highlight">&lt;dl&gt;
  &lt;dt&gt;Definition list&lt;/dt&gt;
  &lt;dd&gt;Is something people use sometimes.&lt;/dd&gt;

  &lt;dt&gt;Markdown in HTML&lt;/dt&gt;
  &lt;dd&gt;Does *not* work **very** well. Use HTML &lt;em&gt;tags&lt;/em&gt;.&lt;/dd&gt;
&lt;/dl&gt;
</code></pre>
        <dl>
            <dt>Definition list</dt>
            <dd>Is something people use sometimes.</dd>
            <dt>Markdown in HTML</dt>
            <dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
        </dl>
    </a><a name="hr"> ## Horizontal Rule
        <pre><code>Three or more...

---

Hyphens

***

Asterisks

___

Underscores
</code></pre>
        <p>Three or more...</p>
        <hr>
        <p>Hyphens</p>
        <hr>
        <p>Asterisks</p>
        <hr>
        <p>Underscores</p>
    </a><a name="lines"> ## Line Breaks <p>My basic recommendation for learning how line breaks work is to experiment and discover -- hit &lt;Enter&gt; once
            (i.e., insert one newline), then hit it twice (i.e., insert two newlines), see what happens. You'll soon learn to get what you want. "Markdown
            Toggle" is your friend.</p>
        <p>Here are some things to try out:</p>
        <pre style="overflow-y: auto" tabindex="0"><code>Here's a line for us to start with.

This line is separated from the one above by two newlines, so it will be a *separate paragraph*.

This line is also a separate paragraph, but...
This line is only separated by a single newline, so it's a separate line in the *same paragraph*.
</code></pre>
        <p>Here's a line for us to start with.</p>
        <p>This line is separated from the one above by two newlines, so it will be a <em>separate paragraph</em>.</p>
        <p>This line is also begins a separate paragraph, but...<br> This line is only separated by a single newline, so it's a separate line in the <em>same
                paragraph</em>.</p>
        <p>(Technical note: <em>Markdown Here</em> uses GFM line breaks, so there's no need to use MD's two-space line breaks.)</p>
    </a><a name="videos"> ## Youtube videos <p>They can't be added directly but you can add an image with a link to the video like this:</p>
        <pre style="overflow-y: auto" tabindex="0"><code class="language-no-highlight">&lt;a href="http://www.youtube.com/watch?feature=player_embedded&amp;v=YOUTUBE_VIDEO_ID_HERE
" target="_blank"&gt;&lt;img src="http://img.youtube.com/vi/YOUTUBE_VIDEO_ID_HERE/0.jpg"
alt="IMAGE ALT TEXT HERE" width="240" height="180" border="10" /&gt;&lt;/a&gt;
</code></pre>
        <p>Or, in pure Markdown, but losing the image sizing and border:</p>
        <pre style="overflow-y: auto" tabindex="0"><code class="language-no-highlight">[![IMAGE ALT TEXT HERE](http://img.youtube.com/vi/YOUTUBE_VIDEO_ID_HERE/0.jpg)](http://www.youtube.com/watch?v=YOUTUBE_VIDEO_ID_HERE)
</code></pre>
    </a>
</div>
<div class="grav-c-ostentatious-copy">
  {{ copy | safe }}
</div>
{
  "text": "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam",
  "url": "#",
  "listItems": [
    {
      "htmlContent": "Some list item content"
    },
    {
      "htmlContent": "More list item content"
    },
    {
      "htmlContent": "Even more list item content"
    },
    {
      "htmlContent": "I can't believe there's still more list item content"
    },
    {
      "htmlContent": "Seriously?! That's enough now."
    }
  ],
  "footer": {
    "copy": "&copy; 2019 <strong>Buildit</strong>. All rights reserved.",
    "linksA": [
      {
        "label": "Stories",
        "url": "#"
      },
      {
        "label": "People",
        "url": "#"
      },
      {
        "label": "Jobs",
        "url": "#"
      }
    ],
    "linksB": [
      {
        "label": "Terms",
        "url": "#"
      },
      {
        "label": "Accessibility",
        "url": "#"
      },
      {
        "label": "Privacy & Cookie Policy",
        "url": "https://wiprodigital.com/privacy-policy"
      }
    ]
  },
  "hero": {
    "pullout": "Big, attention-grabbing headline",
    "paragraph": "Witty subtitle",
    "cta": {
      "text": "Clickbaity label",
      "url": "#"
    }
  },
  "img": {
    "random": {
      "src": "/images/img-random-1.png",
      "alt": "A placeholder image with an arbitrary aspect ratio."
    },
    "square": {
      "src": "/images/img-1x1.png",
      "alt": "A placeholder image with a perfect square (1:1) aspect ratio."
    },
    "tv": {
      "src": "/images/img-4x3.png",
      "alt": "A placeholder image with a 4:3 aspect ratio, like an old TV."
    },
    "widescreen": {
      "src": "/images/img-16x9.png",
      "alt": "A placeholder image with a 16:9 aspect ratio, like a widescreen TV."
    },
    "logo": {
      "src": "/images/img-random-2.png",
      "alt": "A test image for a logo with an arbitrary aspect ratio."
    }
  },
  "title": "Page title",
  "header": {
    "url": "./homepage",
    "links": [
      {
        "text": "Jobs",
        "url": "./jobs"
      },
      {
        "text": "Locations",
        "url": "./locations"
      }
    ],
    "externalLinks": [
      {
        "text": "Fancy external website",
        "url": "./error-page"
      }
    ]
  },
  "sections": [
    {
      "title": "Example section",
      "class": "grav-o-full-bleed__content",
      "content": [
        {
          "paragraph": "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam."
        }
      ]
    }
  ],
  "section": {
    "title": "This is the title for a section",
    "class": "grav-o-full-bleed__content",
    "content": [
      {
        "paragraph": "Paragraph lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
      },
      {
        "blockquote": "Blockquote lorem ipsum dolor sit amet, consectetur adipisicing elit"
      },
      {
        "twoColumnsList": [
          {
            "htmlContent": "Vestibulum auctor dapibus neque."
          },
          {
            "htmlContent": "Lorem ipsum dolor sit amet, consectetuer adipiscing elit."
          },
          {
            "htmlContent": "Aliquam tincidunt mauris eu risus."
          },
          {
            "htmlContent": "Labore et dolore magna aliqua."
          },
          {
            "htmlContent": "Phasellus tempus, orci non mattis sagittis."
          }
        ]
      },
      {
        "inlineRow": [
          {
            "text": "First link",
            "url": "#"
          },
          {
            "text": "Second link",
            "url": "#"
          },
          {
            "text": "Third link",
            "url": "#"
          }
        ]
      },
      {
        "imgCards": [
          {
            "title": "Some fascinating, attention-grabbing headling",
            "content": "Ideally, with a click-baity tagline that entices to you to visit!",
            "image": {
              "src": "/images/img-random-1.png",
              "alt": "Brief description of this fascinating image"
            }
          },
          {
            "title": "Labore et dolore magna aliqua",
            "content": "Vestibulum pharetra arcu enim, nec porttitor quam ullamcorper et. Phasellus tempus, orci non mattis sagittis, lectus erat fringilla odio, nec auctor erat augue quis eros.",
            "image": {
              "src": "/images/img-random-1.png",
              "alt": "Phasellus tempus, orci non mattis"
            }
          },
          {
            "title": "Nanotechnology immersion along the information highway",
            "content": "Leverage agile frameworks to provide a robust synopsis for high level overviews.",
            "image": {
              "src": "/images/img-random-1.png",
              "alt": "Bring to the table win-win survival strategies"
            }
          }
        ]
      },
      {
        "imgLinks": [
          {
            "url": "#",
            "image": {
              "src": "/images/img-random-1.png",
              "alt": "Image linke #1"
            }
          },
          {
            "url": "#",
            "image": {
              "src": "/images/img-random-2.png",
              "alt": "Image linke #2"
            }
          },
          {
            "url": "#",
            "image": {
              "src": "/images/img-random-3.png",
              "alt": "Image linke #3"
            }
          }
        ]
      }
    ]
  },
  "copy": "<p>This is intended as a quick reference and showcase. For more complete info, see <a href=\"http://daringfireball.net/projects/markdown/\">John Gruber's\n  original spec</a> and the <a href=\"http://github.github.com/github-flavored-markdown/\">Github-flavored Markdown info page</a>.</p>\n<h5>Table of Contents</h5>\n<p><a href=\"#headers\">Headers</a><br>\n  <a href=\"#emphasis\">Emphasis</a><br>\n  <a href=\"#lists\">Lists</a><br>\n  <a href=\"#links\">Links</a><br>\n  <a href=\"#images\">Images</a><br>\n  <a href=\"#code\">Code and Syntax Highlighting</a><br>\n  <a href=\"#tables\">Tables</a><br>\n  <a href=\"#blockquotes\">Blockquotes</a><br>\n  <a href=\"#html\">Inline HTML</a><br>\n  <a href=\"#hr\">Horizontal Rule</a><br>\n  <a href=\"#lines\">Line Breaks</a><br>\n  <a href=\"#videos\">Youtube videos</a></p>\n<a name=\"headers\"> ## Headers\n  <pre><code class=\"language-no-highlight\"># H1\n## H2\n### H3\n#### H4\n##### H5\n###### H6\n\nAlternatively, for H1 and H2, an underline-ish style:\n\nAlt-H1\n======\n\nAlt-H2\n------\n</code></pre>\n  <h1>H1</h1>\n  <h2>H2</h2>\n  <h3>H3</h3>\n  <h4>H4</h4>\n  <h5>H5</h5>\n  <h6>H6</h6>\n  <p>Alternatively, for H1 and H2, an underline-ish style:</p>\n  <h1>Alt-H1</h1>\n  <h2>Alt-H2</h2>\n</a><a name=\"emphasis\"> ## Emphasis\n  <pre style=\"overflow-y: auto\" tabindex=\"0\"><code class=\"language-no-highlight\">Emphasis, aka italics, with *asterisks* or _underscores_.\n\nStrong emphasis, aka bold, with **asterisks** or __underscores__.\n\nCombined emphasis with **asterisks and _underscores_**.\n\nStrikethrough uses two tildes. ~~Scratch this.~~\n</code></pre>\n  <p>Emphasis, aka italics, with <em>asterisks</em> or <em>underscores</em>.</p>\n  <p>Strong emphasis, aka bold, with <strong>asterisks</strong> or <strong>underscores</strong>.</p>\n  <p>Combined emphasis with <strong>asterisks and <em>underscores</em></strong>.</p>\n  <p>Strikethrough uses two tildes. <s>Scratch this.</s></p>\n</a><a name=\"lists\"> ## Lists\n  <pre><code class=\"language-no-highlight\">1. First ordered list item\n2. Another item\n  * Unordered sub-list.\n1. Actual numbers don't matter, just that it's a number\n  1. Ordered sub-list\n4. And another item.\n\n   Some text that should be aligned with the above item.\n\n* Unordered list can use asterisks\n- Or minuses\n+ Or pluses\n</code></pre>\n  <ol>\n    <li>First ordered list item</li>\n    <li>Another item</li>\n  </ol>\n  <ul>\n    <li>Unordered sub-list.</li>\n  </ul>\n  <ol>\n    <li>\n      <p>Actual numbers don't matter, just that it's a number</p>\n    </li>\n    <li>\n      <p>Ordered sub-list</p>\n    </li>\n    <li>\n      <p>And another item.</p>\n      <p>Some text that should be aligned with the above item.</p>\n    </li>\n  </ol>\n  <ul>\n    <li>Unordered list can use asterisks</li>\n  </ul>\n  <ul>\n    <li>Or minuses</li>\n  </ul>\n  <ul>\n    <li>Or pluses</li>\n  </ul>\n</a><a name=\"links\"> ## Links <p>There are two ways to create links.</p>\n  <pre style=\"overflow-y: auto\" tabindex=\"0\"><code class=\"language-no-highlight\">[I'm an inline-style link](https://www.google.com)\n\n[I'm a reference-style link][Arbitrary case-insensitive reference text]\n\n[You can use numbers for reference-style link definitions][1]\n\nOr leave it empty and use the [link text itself][]\n\nSome text to show that the reference links can follow later.\n\n[arbitrary case-insensitive reference text]: https://www.mozilla.org\n[1]: http://slashdot.org\n[link text itself]: http://www.reddit.com\n</code></pre>\n</a><p><a name=\"links\"></a><a href=\"https://www.google.com\">I'm an inline-style link</a></p>\n<p><a href=\"https://www.mozilla.org\">I'm a reference-style link</a></p>\n<p><a href=\"http://slashdot.org\">You can use numbers for reference-style link definitions</a></p>\n<p>Or leave it empty and use the <a href=\"http://www.reddit.com\">link text itself</a></p>\n<p>Some text to show that the reference links can follow later.</p>\n<a name=\"images\"> ## Images\n  <pre style=\"overflow-y: auto\" tabindex=\"0\"><code class=\"language-no-highlight\">Here's an image (hover to see the title text):\n\nInline-style:\n![alt text](https://placeimg.com/48/48/any \"Image Title Text 1\")\n\nReference-style:\n![alt text][logo]\n\n[logo]: https://placeimg.com/48/48/any \"Image Title Text 2\"\n</code></pre>\n  <p>Here's our logo (hover to see the title text):</p>\n  <p>Inline-style: <img src=\"https://placeimg.com/320/180/any\" alt=\"alt text\" title=\"Image Title Text 1\"></p>\n  <p>Reference-style: <img src=\"https://placeimg.com/320/180/any\" alt=\"alt text\" title=\"Image Title Text 2\"></p>\n</a><a name=\"code\"> ## Code and Syntax Highlighting </a><p><a name=\"code\">Code blocks are part of the Markdown spec, but syntax highlighting isn't. However, many renderers --\n  like Github's and <em>Markdown Here</em> -- support syntax highlighting. <em>Markdown Here</em> supports highlighting for dozens of languages (and\n  not-really-languages, like diffs and HTTP headers); to see the complete list, and how to write the language names, see the </a><a href=\"http://softwaremaniacs.org/media/soft/highlight/test.html\">highlight.js\n  demo page</a>.</p>\n<pre><code class=\"language-no-highlight\">Inline `code` has `back-ticks around` it.\n</code></pre>\n<p>Inline <code>code</code> has <code>back-ticks around</code> it.</p>\n<p>Blocks of code are either fenced by lines with three back-ticks <code>```</code>, or are indented with four spaces. I recommend only using the fenced\n  code blocks -- they're easier and only they support syntax highlighting.</p>\n<pre><code class=\"language-no-highlight\"> ```javascript\n var s = \"JavaScript syntax highlighting\";\n alert(s);\n</code></pre>\n<pre><code class=\"language-python\">s = \"Python syntax highlighting\"\nprint s\n</code></pre>\n<pre><code style=\"overflow-y: auto\" tabindex=\"0\">No language indicated, so no syntax highlighting.\nBut let's throw in a &lt;b&gt;tag&lt;/b&gt;.\n</code></pre>\n<pre><code>\n```javascript\nvar s = \"JavaScript syntax highlighting\";\nalert(s);\n</code></pre>\n<pre><code class=\"language-python\">s = \"Python syntax highlighting\"\nprint s\n</code></pre>\n<pre><code style=\"overflow-y: auto\" tabindex=\"0\">No language indicated, so no syntax highlighting in Markdown Here (varies on Github).\nBut let's throw in a &lt;b&gt;tag&lt;/b&gt;.\n</code></pre>\n<p>Again, to see what languages are available for highlighting, and how to write those language names, see the <a href=\"http://softwaremaniacs.org/media/soft/highlight/test.html\">highlight.js\n  demo page</a>.</p>\n<a name=\"tables\"> ## Tables <p>Tables aren't part of the core Markdown spec, but they are part of GFM and <em>Markdown Here</em> supports them. They are\n  an easy way of adding tables to your email -- a task that would otherwise require copy-pasting from another application.</p>\n  <pre style=\"overflow-y: auto\" tabindex=\"0\"><code class=\"language-no-highlight\">Colons can be used to align columns.\n\n| Tables        | Are           | Cool  |\n| ------------- |:-------------:| -----:|\n| col 3 is      | right-aligned | $1600 |\n| col 2 is      | centered      |   $12 |\n| zebra stripes | are neat      |    $1 |\n\nThe outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.\n\nMarkdown | Less | Pretty\n--- | --- | ---\n*Still* | `renders` | **nicely**\n1 | 2 | 3\n</code></pre>\n  <p>Colons can be used to align columns.</p>\n  <table>\n    <thead>\n    <tr>\n      <th>Tables</th>\n      <th style=\"text-align:center\">Are</th>\n      <th style=\"text-align:right\">Cool</th>\n    </tr>\n    </thead>\n    <tbody>\n    <tr>\n      <td>col 3 is</td>\n      <td style=\"text-align:center\">right-aligned</td>\n      <td style=\"text-align:right\">$1600</td>\n    </tr>\n    <tr>\n      <td>col 2 is</td>\n      <td style=\"text-align:center\">centered</td>\n      <td style=\"text-align:right\">$12</td>\n    </tr>\n    <tr>\n      <td>zebra stripes</td>\n      <td style=\"text-align:center\">are neat</td>\n      <td style=\"text-align:right\">$1</td>\n    </tr>\n    </tbody>\n  </table>\n  <p>The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.</p>\n  <table>\n    <thead>\n    <tr>\n      <th>Markdown</th>\n      <th>Less</th>\n      <th>Pretty</th>\n    </tr>\n    </thead>\n    <tbody>\n    <tr>\n      <td><em>Still</em></td>\n      <td><code>renders</code></td>\n      <td><strong>nicely</strong></td>\n    </tr>\n    <tr>\n      <td>1</td>\n      <td>2</td>\n      <td>3</td>\n    </tr>\n    </tbody>\n  </table>\n</a><a name=\"blockquotes\"> ## Blockquotes\n  <pre style=\"overflow-y: auto\" tabindex=\"0\"><code class=\"language-no-highlight\">&gt; Blockquotes are very handy in email to emulate reply text.\n&gt; This line is part of the same quote.\n\nQuote break.\n\n&gt; This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.\n</code></pre>\n  <blockquote>\n    <p>Blockquotes are very handy in email to emulate reply text. This line is part of the same quote.</p>\n  </blockquote>\n  <p>Quote break.</p>\n  <blockquote>\n    <p>This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap\n      for everyone. Oh, you can <em>put</em> <strong>Markdown</strong> into a blockquote.</p>\n  </blockquote>\n</a><a name=\"html\"> ## Inline HTML <p>You can also use raw HTML in your Markdown, and it'll mostly work pretty well.</p>\n  <pre style=\"overflow-y: auto\" tabindex=\"0\"><code class=\"language-no-highlight\">&lt;dl&gt;\n  &lt;dt&gt;Definition list&lt;/dt&gt;\n  &lt;dd&gt;Is something people use sometimes.&lt;/dd&gt;\n\n  &lt;dt&gt;Markdown in HTML&lt;/dt&gt;\n  &lt;dd&gt;Does *not* work **very** well. Use HTML &lt;em&gt;tags&lt;/em&gt;.&lt;/dd&gt;\n&lt;/dl&gt;\n</code></pre>\n  <dl>\n    <dt>Definition list</dt>\n    <dd>Is something people use sometimes.</dd>\n    <dt>Markdown in HTML</dt>\n    <dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>\n  </dl>\n</a><a name=\"hr\"> ## Horizontal Rule\n  <pre><code>Three or more...\n\n---\n\nHyphens\n\n***\n\nAsterisks\n\n___\n\nUnderscores\n</code></pre>\n  <p>Three or more...</p>\n  <hr>\n  <p>Hyphens</p>\n  <hr>\n  <p>Asterisks</p>\n  <hr>\n  <p>Underscores</p>\n</a><a name=\"lines\"> ## Line Breaks <p>My basic recommendation for learning how line breaks work is to experiment and discover -- hit &lt;Enter&gt; once\n  (i.e., insert one newline), then hit it twice (i.e., insert two newlines), see what happens. You'll soon learn to get what you want. \"Markdown\n  Toggle\" is your friend.</p>\n  <p>Here are some things to try out:</p>\n  <pre style=\"overflow-y: auto\" tabindex=\"0\"><code>Here's a line for us to start with.\n\nThis line is separated from the one above by two newlines, so it will be a *separate paragraph*.\n\nThis line is also a separate paragraph, but...\nThis line is only separated by a single newline, so it's a separate line in the *same paragraph*.\n</code></pre>\n  <p>Here's a line for us to start with.</p>\n  <p>This line is separated from the one above by two newlines, so it will be a <em>separate paragraph</em>.</p>\n  <p>This line is also begins a separate paragraph, but...<br> This line is only separated by a single newline, so it's a separate line in the <em>same\n    paragraph</em>.</p>\n  <p>(Technical note: <em>Markdown Here</em> uses GFM line breaks, so there's no need to use MD's two-space line breaks.)</p>\n</a><a name=\"videos\"> ## Youtube videos <p>They can't be added directly but you can add an image with a link to the video like this:</p>\n  <pre style=\"overflow-y: auto\" tabindex=\"0\"><code class=\"language-no-highlight\">&lt;a href=\"http://www.youtube.com/watch?feature=player_embedded&amp;v=YOUTUBE_VIDEO_ID_HERE\n\" target=\"_blank\"&gt;&lt;img src=\"http://img.youtube.com/vi/YOUTUBE_VIDEO_ID_HERE/0.jpg\"\nalt=\"IMAGE ALT TEXT HERE\" width=\"240\" height=\"180\" border=\"10\" /&gt;&lt;/a&gt;\n</code></pre>\n  <p>Or, in pure Markdown, but losing the image sizing and border:</p>\n  <pre style=\"overflow-y: auto\" tabindex=\"0\"><code class=\"language-no-highlight\">[![IMAGE ALT TEXT HERE](http://img.youtube.com/vi/YOUTUBE_VIDEO_ID_HERE/0.jpg)](http://www.youtube.com/watch?v=YOUTUBE_VIDEO_ID_HERE)\n</code></pre>\n</a>"
}
  • Handle: @ostentatious-copy
  • Preview:
  • Filesystem Path: src/components/02-molecules/05-copy/00-ostentatious-copy/ostentatious-copy.njk

Purpose

Provides some extra padding to make copy more showy.

Adds even more padding on the left except on smaller screen sizes, but always pads both sides at least a little bit.

This component should contain other molecules but may not work well containing other components.