Skip to content

Topdata Documentation#

Welcome to the Topdata documentation site. This site contains documentation for our Shopware plugins and internal tools.

Example Features#

Testing Data Plugin (Variables from yaml file/s)#

  • 123.456
  • same var value
  • ['main', 'main-sw65']

Testing CSV Table Plugin#

1 2 3
a b c

Testing CSV Table Plugin for json#

TODO: read_json("autogenerated/gitRepositories.json")

Testing Code Block#

import tensorflow as tf
bubble_sort.py
def bubble_sort(items):
    for i in range(len(items)):
        for j in range(len(items) - 1 - i):
            if items[j] > items[j + 1]:
                items[j], items[j + 1] = items[j + 1], items[j]
theme:
  features:
    - content.code.annotate # (1)
  1. :man_raising_hand: I'm a code annotation! I can contain code, formatted text, images, ... basically anything that can be written in Markdown.

Testing Mermaid#

graph LR
  A[Start] --> B{Error?};
  B -->|Yes| C[Hmm...];
  C --> D[Debug];
  D --> B;
  B ---->|No| E[Yay!];