Content Manager: Added Documentation, Implemented functional approach to the HTML table generation and refactored API codes, Using DOM purifier to prevent XSS

This commit is contained in:
2024-11-29 01:40:44 +09:00
parent 234b93d711
commit 3ddcf5fa5e
45 changed files with 16953 additions and 70 deletions

View File

@@ -0,0 +1,29 @@
{
"plugins": ["plugins/markdown"],
"recurseDepth": 5,
"sourceType": "module",
"source": {
"include": ["./utils/", "./api/"],
"excludePattern": "(node_modules/|docs)"
},
"tags": {
"allowUnknownTags": false,
"dictionaries": ["jsdoc"]
},
"templates": {
"cleverLinks": true,
"monospaceLinks": true,
"disableSort": true
},
"opts": {
"encoding": "utf8",
"verbose": true,
"destination": "./docs/",
"readme": "./README.md",
"package": "./package.json"
},
"markdown": {
"hardwrap": false,
"idInHeadings": true
}
}