diff options
Diffstat (limited to 'docs/collect.js')
| -rw-r--r-- | docs/collect.js | 2 |
1 files changed, 1 insertions, 1 deletions
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(/^<pre>/)) { text = text.replace(/<angular\/>/gm, '<tt><angular/></tt>'); text = new Showdown.converter().makeHtml(text); - text = text.replace(/(angular\.[\$\w\._\-:]+)/gm, '<a href="#!$1">$1</a>'); + text = text.replace(/[^#][^!](angular\.[\$\w\._\-:]+)/gm, '<a href="#!$1">$1</a>'); text = text.replace(/(`(ng:[\w\._\-]+)`)/gm, '<a href="#!angular.directive.$2">$1</a>'); parts[i] = text; } |
