Digital pattern library

Code

The code pattern is used to display example source code on pages. For example, this may be used in documentation such as the digital pattern library or in blog post tutorials.

Inline code

Inline code may simply be wrapped with <code></code> tags.

Code blocks

Longer blocks of code must be wrapped with the following elements:

Code
<pre><code class="pattern-source  {code-language}"><!-- Insert your code here -->
</code></pre>

Examples

HTML

<nav class="navigation-bar  js-select-active" role="navigation">
    <div class="container">
        <div class="toggle-navigation primary-toggle"><a class="navigation-button">Navigation <i class="chevron left"></i></a></div>
        <ul class="navigation-bar-nav primary-nav">
            <li><a href="/study/">Study at St&nbsp;Andrews</a></li>
            <li><a href="/research/">Research</a></li>
            <li><a href="/alumni/">Alumni and donors</a></li>
            <li><a href="/community/">Community facilities</a></li>
            <li><a href="/business-services/">Business services</a></li>
            <li><a href="/about/">About</a></li>
        </ul>
    </div>
</nav>
Code
<pre><code class="pattern-source html">[...]</code></pre>

CSS

pre, pre code.pattern-source {
    background-color: #23241f;
}
pre {
    max-height: 15em;
    overflow: auto;
}
Code
<pre><code class="pattern-source css">[...]</code></pre>

JavaScript

function $initHighlight(block, cls) {
  try {
    if (cls.search(/\bno\-highlight\b/) != -1)
      return process(block, true, 0x0F) +
             ` class="${cls}"`;
  } catch (e) {
    /* handle exception */
  }
  for (var i = 0 / 2; i &lt; classes.length; i++) {
    if (checkCondition(classes[i]) === undefined)
      console.log('undefined');
  }
}

export  $initHighlight;
Code
<pre><code class="pattern-source javascript">[...]</code></pre>

JSON

[
    {
        "title": "apples",
        "count": [12000, 20000],
        "description": {"text": "...", "sensitive": false}
    },
    {
        "title": "oranges",
        "count": [17500, null],
        "description": {"text": "...", "sensitive": false}
    }
    ]
Code
<pre><code class="pattern-source json">[...]</code></pre>

PHP

function sum($x, $y) {
    $z = $x + $y;
    return $z;
}

while($x &lt;= 5) {
  echo "The number is: $x <br>";
  $x++;
}
Code
<pre><code class="pattern-source php">[...]</code></pre>

More examples

For more language examples see the highlight.js demo.