autodoc: add html tags to "null"
This commit is contained in:
@@ -1641,7 +1641,11 @@ const NAV_MODES = {
|
||||
return payloadHtml;
|
||||
}
|
||||
case "null": {
|
||||
return "null";
|
||||
if (opts.wantHtml) {
|
||||
return '<span class="tok-null">null</span>';
|
||||
} else {
|
||||
return "null";
|
||||
}
|
||||
}
|
||||
case "array": {
|
||||
let payloadHtml = ".{";
|
||||
|
||||
Reference in New Issue
Block a user