brotkrueml / schema

TYPO3 extension providing an API and view helpers for schema.org markup
https://extensions.typo3.org/extension/schema
GNU General Public License v2.0
32 stars 9 forks source link

Allow multiple property values via TypoScript #94

Closed brotkrueml closed 2 years ago

brotkrueml commented 2 years ago

Is your feature request related to a problem? Please describe.

Like with the API or the view helpers it should be possible to add multiple values with TypoScript, like:

"availableLanguage": ["en","de"]

Describe the solution you'd like

Preferable would be an array syntax known from TypoScript:

properties.availableLanguage {
    10 = en
    20 = de
}

The properties should be stdWrap'able.

Acceptance criteria