forked from FINAKON/HelpProject
1. Initial Commit - a boiler plate code and POC to realize the concept of context sensitive help 2. Frontend code written in ReactJS 3. Backend code written in Java, Spring Boot Framework 4. Frontend Start: pre-requisites : node, npm npm run dev ==> to start the frontend vite server 5. Backend Start: pre-requisites : java, mvn mvn spring-boot:run ==> to start the backend server 6. Visit http://localhost:5173/ for basic demo of help, press F1 in textboxes 7. Visit http://localhost:5173/editor and enter "admin123" to add/modify texts. Happy Coding !!! Thank you, Bhargava.
37 lines
961 B
JavaScript
37 lines
961 B
JavaScript
/**
|
|
* @typedef {import('./core.js').CoreOptions & import('./util/format-smart.js').FormatSmartOptions} Options
|
|
* @typedef {import('./core.js').CoreOptions} LightOptions
|
|
*/
|
|
|
|
import {core} from './core.js'
|
|
import {formatSmart} from './util/format-smart.js'
|
|
import {formatBasic} from './util/format-basic.js'
|
|
|
|
/**
|
|
* Encode special characters in `value`.
|
|
*
|
|
* @param {string} value
|
|
* Value to encode.
|
|
* @param {Options} [options]
|
|
* Configuration.
|
|
* @returns {string}
|
|
* Encoded value.
|
|
*/
|
|
export function stringifyEntities(value, options) {
|
|
return core(value, Object.assign({format: formatSmart}, options))
|
|
}
|
|
|
|
/**
|
|
* Encode special characters in `value` as hexadecimals.
|
|
*
|
|
* @param {string} value
|
|
* Value to encode.
|
|
* @param {LightOptions} [options]
|
|
* Configuration.
|
|
* @returns {string}
|
|
* Encoded value.
|
|
*/
|
|
export function stringifyEntitiesLight(value, options) {
|
|
return core(value, Object.assign({format: formatBasic}, options))
|
|
}
|