contentlayerdev / contentlayerdev/contentlayer
Add `Union` Field Type
- Lingua principale
- TypeScript
- Stelle
- 3.5k
- Fork
- 192
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
Basically, allow me to define a union of types that a field can be.
Simple example would be `string | string[]`. Config proposal:
```typescript
// ...
author: {
type: `union`,
of: [
{
type: `string`
},
{
type: `list`,
of: {
type: `string`
}
}
]
},
```
This would permit the following frontmatter:
```yaml
author: Foo Bar
# or
author:
- Foo Bar
- Baz Qux
```
If this is already possible with the existing field types, please add examples to the documentation which demonstrate how to do this, as it's not readily apparent how this can be done.
Guida per i contributori
Apri la guida per i contributori
Valutazione
Questa issue non è ancora stata valutata.