Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
cd my-light-modules
mkdir -p block-examples/blocks
mkdir -p block-examples/templates/blocks
mkdir block-examples/i18n
mkdir -p block-examples/decorations/stories-app/apps/

Add the block definition:

...

Code Block
languageyaml
titleblock-examples/i18n/example-blocks_de.properties
blocks.quote.label=das Zitat
quote.quotation.label=das Zitat
quote.citedPerson.label=zitierte Person

Decorate the Stories app to allow it to use our new block type:

Code Block
languageyaml
titleblock-examples/decorations/stories-app/apps/stories.yaml
subApps:
  editor:
    contentDefinition:

      blocks:
        - text
        - image
        - video
        - externalLink
        - quote


YZ