Skip to content

Latest commit

 

History

History
84 lines (61 loc) · 1.91 KB

feature-testing.md

File metadata and controls

84 lines (61 loc) · 1.91 KB

This doc is for testing styling problems

Here is a markdown table:

Hello there Tilte
Value one Value two code
Empty cells

Code block

const person = 'one';

const func = () => {
  return 'this is a func';
};

Headings

Heading one

Heading 2

heading three

Version number: 2

heading 4

Embedded images

expedia group

Graphviz

This should render a small diagram as long as graphviz is available in the environment where the docs are generated. MkDocs will use it automatically.

digraph G {
    rankdir=LR
    Earth [peripheries=2]
    Mars
    Earth -> Mars
}

PlantUML

  Goofy ->  MickeyMouse: calls
  Goofy <-- MickeyMouse: responds

::uml:: format="png" classes="uml myDiagram" alt="My super diagram placeholder" title="My super diagram" width="300px" height="300px" Goofy -> MickeyMouse: calls Goofy <-- MickeyMouse: responds ::end-uml::

Mermaid

This project contains a few lambdas to handle managing installations, github webhook handlers and dishing out tokens to backstage backends.

%%{init: {'theme': 'base', 'themeVariables': { 'primaryColor': '#ff0000'}}}%%
        graph TD
          A[Christmas] -->|Get money| B(Go shopping)
          B --> C{Let me think}
          B --> G[/Another/]
          C ==>|One| D[Laptop]
          C -->|Two| E[iPhone]
          C -->|Three| F[fa:fa-car Car]
          subgraph section
            C
            D
            E
            F
            G
          end
Loading