update api docs parser
This commit is contained in:
parent
77119b8f2e
commit
c97fcab951
1 changed files with 16 additions and 25 deletions
|
@ -139,10 +139,8 @@ pandora.ui.apiDialog = function() {
|
||||||
})
|
})
|
||||||
.css({backgroundColor: 'rgba(0, 0, 0, 0)'}),
|
.css({backgroundColor: 'rgba(0, 0, 0, 0)'}),
|
||||||
parts, parts_,
|
parts, parts_,
|
||||||
colon = '</span><span class="OxOperator">:</span>'
|
colon = '</span><span class="OxOperator">:</span>',
|
||||||
+ '<span class="OxWhitespace"> </span>',
|
comma = '<span class="OxOperator">,</span>',
|
||||||
comma = '<span class="OxOperator">,</span>'
|
|
||||||
+ '<span class="OxWhitespace"> </span>',
|
|
||||||
linebreak = '<span class="OxLinebreak"><br></span>',
|
linebreak = '<span class="OxLinebreak"><br></span>',
|
||||||
whitespace = '<span class="OxWhitespace"> </span>';
|
whitespace = '<span class="OxWhitespace"> </span>';
|
||||||
['Keyword', 'Method', 'Property'].forEach(function(type) {
|
['Keyword', 'Method', 'Property'].forEach(function(type) {
|
||||||
|
@ -153,30 +151,23 @@ pandora.ui.apiDialog = function() {
|
||||||
$doc.html(
|
$doc.html(
|
||||||
$doc.html().replace(/BOLD(\w+)BOLD/g, '<b>$1</b>')
|
$doc.html().replace(/BOLD(\w+)BOLD/g, '<b>$1</b>')
|
||||||
);
|
);
|
||||||
parts = $doc.html().split('<b>notes</b>' + colon);
|
parts = $doc.html().split('<b>see</b>' + colon + whitespace);
|
||||||
if (parts.length == 2) {
|
|
||||||
parts_ = parts[1].split('<b>see</b>' + colon);
|
|
||||||
if (parts_.length == 2) {
|
|
||||||
parts_[0] = parts_[0]
|
|
||||||
.replace(new RegExp(linebreak), whitespace);
|
|
||||||
parts[1] = parts_.join('<b>see</b>' + colon);
|
|
||||||
} else {
|
|
||||||
parts[1] = parts[1].replace(/\n\s+?/g, ' ');
|
|
||||||
}
|
|
||||||
$doc.html(parts.join('<b>notes</b>' + colon));
|
|
||||||
}
|
|
||||||
parts = $doc.html().split('<b>see</b>' + colon);
|
|
||||||
if (parts.length == 2) {
|
if (parts.length == 2) {
|
||||||
parts[1] = parts[1]
|
parts[1] = parts[1]
|
||||||
.replace(new RegExp(linebreak), whitespace)
|
.split(comma + linebreak)
|
||||||
.split(comma)
|
.map(function(part) {
|
||||||
|
return part
|
||||||
|
.split(comma + whitespace)
|
||||||
.map(function(action) {
|
.map(function(action) {
|
||||||
action = Ox.stripTags(action);
|
action = Ox.stripTags(action);
|
||||||
return '<span class="OxMethod"><a href="/api/'
|
return '<span class="OxMethod"><a href="/api/'
|
||||||
+ action + '">' + action + '</a></span>';
|
+ action + '">' + action + '</a></span>';
|
||||||
})
|
})
|
||||||
.join(comma);
|
.join(comma + whitespace);
|
||||||
$doc.html(parts.join('<b>see</b>' + colon));
|
|
||||||
|
})
|
||||||
|
.join(comma + linebreack);
|
||||||
|
$doc.html(parts.join('<b>see</b>' + colon + whitespace));
|
||||||
}
|
}
|
||||||
pandora.createLinks($doc);
|
pandora.createLinks($doc);
|
||||||
return $doc;
|
return $doc;
|
||||||
|
|
Loading…
Reference in a new issue