diff --git a/docs/collect.js b/docs/collect.js index aa16490b..a4db4ed1 100644 --- a/docs/collect.js +++ b/docs/collect.js @@ -169,7 +169,7 @@ function markdown(text) { if (!text.match(/^
/)) {
text = text.replace(/ /gm, '<angular/>');
text = new Showdown.converter().makeHtml(text);
- text = text.replace(/(angular\.[\$\w\._\-:]+)/gm, '$1');
+ text = text.replace(/[^#][^!](angular\.[\$\w\._\-:]+)/gm, '$1');
text = text.replace(/(`(ng:[\w\._\-]+)`)/gm, '$1');
parts[i] = text;
}