Zum Inhalt

Topdata Dokumentation#

Willkommen auf der Topdata-Dokumentationsseite. Diese Seite enthält Dokumentation für unsere Shopware-Plugins und internen Tools.

Beispiel-Features#

Test Data Plugin (Variablen aus YAML-Datei/en)#

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

Test CSV Tabellen Plugin#

1 2 3
a b c

Test CSV Tabellen Plugin fĂĽr JSON#

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

Test 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: Ich bin eine Code-Anmerkung! Ich kann Code, formatierten Text, Bilder, ... eigentlich alles enthalten, was in Markdown geschrieben werden kann.

Test Mermaid#

graph LR
  A[Start] --> B{Fehler?};
  B -->|Ja| C[Hmm...];
  C --> D[Debug];
  D --> B;
  B ---->|Nein| E[Yay!];