Jonathan Pollak
Jonathan Pollak
It is probably the `-`. Since `{{ }}` in Twig is the `print` statement, anything inside it will be interpreted, so `-`s are treated as the `minus` operator. Basically, Twig...
@dmolsen - Any reason why [DataLinkExporter.php](https://github.com/pattern-lab/patternlab-php-core/blob/91a0e43abd11896b814b9dea5cd658d94380e8b4/src/PatternLab/PatternData/Exporters/DataLinkExporter.php#L34) in [patternlab-php-core](https://github.com/pattern-lab/patternlab-php-core) has: ``` php $value = "../../".$patternStoreData["pathDash"]."/".$patternStoreData["pathDash"].".html"; ``` Rather than: ``` php $value = "../".$patternStoreData["pathDash"]."/".$patternStoreData["pathDash"].".html"; ``` `../../` points links to `/` instead of...
@dmolsen - I fixed this by locally changing [DataLinkExporter.php](https://github.com/pattern-lab/patternlab-php-core/blob/91a0e43abd11896b814b9dea5cd658d94380e8b4/src/PatternLab/PatternData/Exporters/DataLinkExporter.php#L34) from: ``` php $value = "../../".$patternStoreData["pathDash"]."/".$patternStoreData["pathDash"].".html"; ``` to: ``` php $value = "../".$patternStoreData["pathDash"]."/".$patternStoreData["pathDash"].".html"; ``` Tried to test it with the Mustache...
@scottnath - I have it working with `grunt-contrib-watch` and `grunt-shell`: ``` js shell: { patternlab: { command: 'php core/console --generate --patternsonly' } } ```
Thanks for the very quick reply! I realize this will duplication of items in the documentation page, but I think such duplication could make perfect sense in many projects. Any...
Why would this be a compatibility breaking feature that can only be added in 2.0?
What would happen today if I had to @group annotation for a single element? would it generate an error or simple only use one?
Thanks. Sorry to keep nagging with this very minor issue, but our code-base is used by both designers and developers, and the two groups seem to often understand the grouping...
The changelog in `develop` says: ``` Annotations @access, @content, @deprecated, @group, @output, @return and @type are now restricted to one use per item (#257) ``` This makes sense for all...