Comparing version 1.5.1 to 1.5.2
# Changelog | ||
## 1.5.2 | ||
* fix: add implicit type for required placeholders ([#197](https://github.com/SassDoc/sassdoc/issues/197)) | ||
## 1.5.1 | ||
* Use `stat` instead of `lstat` to support symlinks ([22a9b79](https://github.com/SassDoc/sassdoc/commit/22a9b7986e1eef2bf962bb9b1a48467d257ee398)) | ||
## 1.5.0 | ||
@@ -4,0 +12,0 @@ |
@@ -20,3 +20,3 @@ { | ||
], | ||
"version": "1.5.1", | ||
"version": "1.5.2", | ||
"license": { | ||
@@ -23,0 +23,0 @@ "type": "MIT", |
@@ -21,3 +21,3 @@ # SassDoc | ||
[SassDoc](http://github.com/sassdoc/sassdoc) parses your source folder to grab documentation-specific comments. From there, it builds a data tree, that gets [enhanced](http://github.com/sassdoc/sassdoc-indexer) and [filtered](http://github.com/sassdoc/sassdic-filter) before being passed to the [view](http://github.com/sassdoc/sassdoc-theme-light). So you end up with a fully styled HTML document located at your destination folder. | ||
[SassDoc](http://github.com/sassdoc/sassdoc) parses your source folder to grab documentation-specific comments. From there, it builds a data tree, that gets [enhanced](http://github.com/sassdoc/sassdoc-indexer) and [filtered](http://github.com/sassdoc/sassdoc-filter) before being passed to the [view](http://github.com/sassdoc/sassdoc-theme-light). So you end up with a fully styled HTML document located at your destination folder. | ||
@@ -150,2 +150,3 @@ ## Usage | ||
* [GUSS](http://www.kaelig.fr/gu/guss-sassdoc/) from The Guardian | ||
* [Valo](https://vaadin.com/api/valo/) from Vaadin | ||
* [SassyIcons](http://pascalduez.github.io/SassyIcons/docs/) from Pascal Duez | ||
@@ -152,0 +153,0 @@ * [SassyFilters](http://pascalduez.github.io/SassyFilters/docs/) from Pascal Duez |
@@ -25,2 +25,7 @@ 'use strict'; | ||
if (obj.name.indexOf('%') === 0) { | ||
obj.type = 'placeholder'; | ||
obj.name = obj.name.slice(1); | ||
} | ||
if (match[4]) { | ||
@@ -27,0 +32,0 @@ obj.description = match[4].trim(); |
165
166395
37
1553