mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-16 12:57:27 +02:00
Fixed Asset Class
This commit is contained in:
parent
7af53bea4e
commit
2b7e217c35
4 changed files with 6 additions and 5 deletions
0
tools/jsdoc/Grav-Formater.js
Normal file
0
tools/jsdoc/Grav-Formater.js
Normal file
|
@ -1140,7 +1140,6 @@ HMD:
|
|||
location:
|
||||
<a href="/api-reference/namespaces/uuid">Uuid</a>
|
||||
<a href="/api-reference/namespaces/uuid">Uuid.NULL</a>
|
||||
<a href="/api-reference/namespaces/uuid">Uuid</a>
|
||||
<a href="location#.goBack">goBack</a>
|
||||
<a href="location#.goForward">goForward</a>
|
||||
<a href="location#.LookupTrigger">location.LookupTrigger</a>
|
||||
|
@ -1986,8 +1985,10 @@ Users:
|
|||
<a href="/api-reference/namespaces/uuid">Uuid</a>
|
||||
<a href="/api-reference/namespaces/uuid">Uuid</a>
|
||||
<a href="/api-reference/namespaces/uuid">Uuid</a>
|
||||
<a href="users#.usernameFromIDReply">usernameFromIDReply</a>
|
||||
<a href="/api-reference/namespaces/uuid">Uuid</a>
|
||||
<a href="/api-reference/namespaces/uuid">Uuid</a>
|
||||
<a href="users#.requestUsernameFromID">requestUsernameFromID</a>
|
||||
<a href="/api-reference/namespaces/uuid">Uuid</a>
|
||||
Uuid:
|
||||
<a href="/api-reference/namespaces/uuid">Uuid</a>
|
||||
|
|
|
@ -1 +1 @@
|
|||
cmd /k node gravPrep true "D:/ROLC/Organize/O_Projects/Hifi/Docs/hifi-docs-grav/user/themes/learn2/" "D:/ROLC/Organize/O_Projects/Hifi/Docs/hifi-docs-grav-content/"
|
||||
node gravPrep true "D:\ROLC_High-Fidelity\02_Organize\O_Projects\Docs\Docs-Repo\hifi-docs-grav\user\themes\learn2" "D:\ROLC_High-Fidelity\02_Organize\O_Projects\Docs\Docs-Content\hifi-docs-grav-content"
|
|
@ -66,9 +66,9 @@
|
|||
const html_reg_propertiesHeaderEdit_Replace = '<h4 class="subsection-title">Properties</h4>';
|
||||
const html_reg_typeEdit = /(<h5>Returns[\s\S]*?Type)(<\/dt[\s\S]*?type">)(.*?)(<\/span><\/dd>[\s\S]*?<\/dl>)/g;
|
||||
const html_reg_typeEdit_replace = '$1: $3</dt></dl>'
|
||||
const html_reg_methodSize = /(<h4)( class="name"[\s\S]*?<\/span>)(<\/h4>)/g;
|
||||
const html_reg_methodSize = /(<h4)( class="name"[\s\S]*?<\/span>)(<\/h4>\n)/gm;
|
||||
const html_reg_methodSize_replace = '<h5$2</h5>';
|
||||
const html_reg_typeDefSize = /(<h4)( class="name"[\s\S].*?)(<\/h4>)/g;
|
||||
const html_reg_typeDefSize = /(<h4)( class="name"[\s\S]*?)(<\/h4>\n)/g;
|
||||
const html_reg_typeDefSize_replace = '<h5$2</h5>';
|
||||
const html_reg_typeReturnSize = /<h5>Type:\<\/h5>/g;
|
||||
const html_reg_typeReturnSize_replace = '<h6>Type:<h6>';
|
||||
|
@ -525,9 +525,9 @@
|
|||
.replace(html_reg_subsectionEdit, html_reg_subsectionEdit_replace)
|
||||
.replace(html_reg_propertiesHeaderEdit, html_reg_propertiesHeaderEdit_Replace)
|
||||
.replace(html_reg_typeEdit, html_reg_typeEdit_replace)
|
||||
.replace(html_reg_typeDefSize, html_reg_typeDefSize_replace)
|
||||
.replace(html_reg_returnSize, html_reg_returnSize_replace)
|
||||
.replace(html_reg_methodSize, html_reg_methodSize_replace)
|
||||
.replace(html_reg_typeDefSize, html_reg_typeDefSize_replace)
|
||||
.replace(html_reg_typeDefinitonsTitle, "")
|
||||
.replace(html_reg_findGlobalLinks, html_reg_findGlobalLinks_replace)
|
||||
.replace(html_reg_findGeneralLinks, lowerCaseGeneralLinks)
|
||||
|
|
Loading…
Reference in a new issue