From 7215afa21c91c33c924a5aba7f3a704983642897 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Tue, 13 Aug 2013 16:57:52 -0700 Subject: chore(ngdocs): fixup the docs version switcher --- docs/src/ngdoc.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'docs/src/ngdoc.js') diff --git a/docs/src/ngdoc.js b/docs/src/ngdoc.js index a53fbd80..88d595af 100644 --- a/docs/src/ngdoc.js +++ b/docs/src/ngdoc.js @@ -39,7 +39,7 @@ exports.merge = merge; exports.Doc = Doc; exports.ngVersions = function() { - var line, versions = [], regex = /^v([1-9]\d*(?:\.\d+)+)$/; //only fetch >= 1.0.0 versions + var versions = [], regex = /^v([1-9]\d*(?:\.\d+\S+)+)$/; //only fetch >= 1.0.0 versions shell.exec('git tag', {silent: true}).output.split(/\s*\n\s*/) .forEach(function(line) { var matches = regex.exec(line); @@ -47,7 +47,7 @@ exports.ngVersions = function() { versions.push(matches[1]); } }); - versions.push(exports.ngCurrentVersion().number); + versions.push(exports.ngCurrentVersion().full); return versions; }; @@ -295,7 +295,7 @@ Doc.prototype = { } pageClassName = pageClassName || prepareClassName(this.name || 'docs') + suffix; - text = '
' + + text = '
' + marked(text) + '
'; text = text.replace(/(?:

)?(REPLACEME\d+)(?:<\/p>)?/g, function(_, id) { @@ -318,8 +318,8 @@ Doc.prototype = { text = content; } return "\n" + line.replace(pattern, function(match) { - return '

' + match + '
'; -- cgit v1.2.3