Releases: straker/livingcss
Releases · straker/livingcss
v7.0.1
v7.0.0
v6.0.3
v6.0.2
v6.0.1
v6.0.0
v5.0.2
v5.0.1
v5.0.0
- fix(parseComments): left trim comment description when used as name of section
- feat(tags): a custom tag with only a type of
markdown
and no name will now result in just a DOM string instead of creating an object.
/**
* @customTag {markdown} Hello *world!*
*/
Before:
customTag: {
description: '<p>Hello <em>world!</em></p>',
type: 'markdown'
}
After:
customTag: '<p>Hello <em>world!</em></p>'