Skip to content

Commit

Permalink
Fix @returns tag of extended classes doesn't escape HTML (fixes yui#324)
Browse files Browse the repository at this point in the history
This is an additional fixes yui#324. See also yui#341.
  • Loading branch information
okuryu committed Apr 15, 2015
1 parent fa4e034 commit 17b11e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ YUI.add('doc-builder', function (Y) {
if (v.forEach || (v instanceof Object)) {
o[k1][k] = self.augmentData(v);
} else {
o[k1][k] = self.markdown(v);
o[k1][k] = o.extended_from ? v : self.markdown(v);
}
}
});
Expand Down

0 comments on commit 17b11e2

Please sign in to comment.