forked from 0x2620/pandora
update api docs parser
This commit is contained in:
parent
e8d15c1a87
commit
5c27244767
1 changed files with 11 additions and 9 deletions
|
@ -139,7 +139,9 @@ pandora.ui.apiDialog = function() {
|
||||||
})
|
})
|
||||||
.css({backgroundColor: 'rgba(0, 0, 0, 0)'}),
|
.css({backgroundColor: 'rgba(0, 0, 0, 0)'}),
|
||||||
parts, parts_,
|
parts, parts_,
|
||||||
separator = '<span class="OxOperator">,</span>'
|
colon = '<span class="OxOperator">:</span>'
|
||||||
|
+ '<span class="OxWhitespace"> </span>';
|
||||||
|
comma = '<span class="OxOperator">,</span>'
|
||||||
+ '<span class="OxWhitespace"> </span>';
|
+ '<span class="OxWhitespace"> </span>';
|
||||||
['Keyword', 'Method', 'Property'].forEach(function(type) {
|
['Keyword', 'Method', 'Property'].forEach(function(type) {
|
||||||
$doc.find('.Ox' + type).removeClass('Ox' + type);
|
$doc.find('.Ox' + type).removeClass('Ox' + type);
|
||||||
|
@ -147,26 +149,26 @@ 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>');
|
parts = $doc.html().split('<b>notes</b>' + colon);
|
||||||
if (parts.length == 2) {
|
if (parts.length == 2) {
|
||||||
parts_ = parts[1].split('<b>see</b>');
|
parts_ = parts[1].split('<b>see</b>' + colon);
|
||||||
if (parts_.length == 2) {
|
if (parts_.length == 2) {
|
||||||
parts_[0] = parts_[0].replace(/\n\s+?/g, ' ');
|
parts_[0] = parts_[0].replace(/\n\s+?/g, ' ');
|
||||||
parts[1] = parts_.join('<b>see</b>');
|
parts[1] = parts_.join('<b>see</b>' + colon);
|
||||||
} else {
|
} else {
|
||||||
parts[1] = parts[1].replace(/\n\s+?/g, ' ');
|
parts[1] = parts[1].replace(/\n\s+?/g, ' ');
|
||||||
}
|
}
|
||||||
$doc.html(parts.join('<b>notes</b>'));
|
$doc.html(parts.join('<b>notes</b>' + colon));
|
||||||
}
|
}
|
||||||
parts = $doc.html().split('<b>see</b>');
|
parts = $doc.html().split('<b>see</b>' + colon);
|
||||||
if (parts.length == 2) {
|
if (parts.length == 2) {
|
||||||
parts[1] = parts[1].replace(/\n\s+?/, '').split(separator).map(
|
parts[1] = parts[1].replace(/\n\s+?/, '').split(comma).map(
|
||||||
function(action) {
|
function(action) {
|
||||||
return '<a href="/api/' + Ox.stripTags(action) + '">'
|
return '<a href="/api/' + Ox.stripTags(action) + '">'
|
||||||
+ action + '</a>';
|
+ action + '</a>';
|
||||||
}
|
}
|
||||||
).join(separator);
|
).join(comma);
|
||||||
$doc.html(parts.join('<b>see</b>'));
|
$doc.html(parts.join('<b>see</b>' + colon));
|
||||||
}
|
}
|
||||||
pandora.createLinks($doc);
|
pandora.createLinks($doc);
|
||||||
return $doc;
|
return $doc;
|
||||||
|
|
Loading…
Reference in a new issue