This commit is contained in:
Jeff Williams 2014-12-16 10:09:51 -08:00
parent f6c9e99d82
commit 3aa3214fde

View File

@ -96,10 +96,9 @@ function toTags(docletSrc) {
.split('\\@')
.forEach(function($) {
if ($) {
parsedTag = $.match(/^(\S+)(:?\s+(\S[\s\S]*))?/);
parsedTag = $.match(/^(\S+)(?:\s+(\S[\s\S]*))?/);
if (parsedTag) {
// we don't need parsedTag[0]
tagTitle = parsedTag[1];
tagText = parsedTag[2];