Nik Dm
Nik Dm
`AggregateRating` should contain `itemReviewed` property. https://schema.org/AggregateRating Not sure, but it looks like property was removed at release >= 0.0.11 ``` {"@context":"http:\/\/schema.org","@type":"AggregateRating","sameAs":"https:\/\/example.com/item","reviewCount":"129","ratingValue":"3.40","bestRating":5,"worstRating":1,"ratingCount":"129"} ``` This is example context generated with current property-set...
Code definition from example to `[color]` with `OptionValidator` ``` $builder = new CodeDefinitionBuilder('color', '{param}'); $builder->setUseOption(true)->setOptionValidator($CssColorValidator); ``` Here is text with invalid `option` in `[color]` ``` [b] bold text [color=!nvaL!d_color] [u]...
Yes it's easy to create bb-codes for table [table], [th], [tr], [td] with `CodeDefinitionBuilder` like this ``` //table $builder = new CodeDefinitionBuilder('table', '{param}'); array_push($this->definitions, $builder->build()); //thead $builder = new CodeDefinitionBuilder('th',...
Laravel 10 requires `"illuminate/contracts": "^10.0"`