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.
70 lines
2.0 KiB
JavaScript
70 lines
2.0 KiB
JavaScript
/**
|
|
* @typedef {import('micromark-extension-gfm-footnote').HtmlOptions} HtmlOptions
|
|
* @typedef {import('micromark-extension-gfm-strikethrough').Options} Options
|
|
* @typedef {import('micromark-util-types').Extension} Extension
|
|
* @typedef {import('micromark-util-types').HtmlExtension} HtmlExtension
|
|
*/
|
|
|
|
import {
|
|
combineExtensions,
|
|
combineHtmlExtensions
|
|
} from 'micromark-util-combine-extensions'
|
|
import {
|
|
gfmAutolinkLiteral,
|
|
gfmAutolinkLiteralHtml
|
|
} from 'micromark-extension-gfm-autolink-literal'
|
|
import {gfmFootnote, gfmFootnoteHtml} from 'micromark-extension-gfm-footnote'
|
|
import {
|
|
gfmStrikethrough,
|
|
gfmStrikethroughHtml
|
|
} from 'micromark-extension-gfm-strikethrough'
|
|
import {gfmTable, gfmTableHtml} from 'micromark-extension-gfm-table'
|
|
import {gfmTagfilterHtml} from 'micromark-extension-gfm-tagfilter'
|
|
import {
|
|
gfmTaskListItem,
|
|
gfmTaskListItemHtml
|
|
} from 'micromark-extension-gfm-task-list-item'
|
|
|
|
/**
|
|
* Create an extension for `micromark` to enable GFM syntax.
|
|
*
|
|
* @param {Options | null | undefined} [options]
|
|
* Configuration (optional).
|
|
*
|
|
* Passed to `micromark-extens-gfm-strikethrough`.
|
|
* @returns {Extension}
|
|
* Extension for `micromark` that can be passed in `extensions` to enable GFM
|
|
* syntax.
|
|
*/
|
|
export function gfm(options) {
|
|
return combineExtensions([
|
|
gfmAutolinkLiteral(),
|
|
gfmFootnote(),
|
|
gfmStrikethrough(options),
|
|
gfmTable(),
|
|
gfmTaskListItem()
|
|
])
|
|
}
|
|
|
|
/**
|
|
* Create an extension for `micromark` to support GFM when serializing to HTML.
|
|
*
|
|
* @param {HtmlOptions | null | undefined} [options]
|
|
* Configuration (optional).
|
|
*
|
|
* Passed to `micromark-extens-gfm-footnote`.
|
|
* @returns {HtmlExtension}
|
|
* Extension for `micromark` that can be passed in `htmlExtensions` to
|
|
* support GFM when serializing to HTML.
|
|
*/
|
|
export function gfmHtml(options) {
|
|
return combineHtmlExtensions([
|
|
gfmAutolinkLiteralHtml(),
|
|
gfmFootnoteHtml(options),
|
|
gfmStrikethroughHtml(),
|
|
gfmTableHtml(),
|
|
gfmTagfilterHtml(),
|
|
gfmTaskListItemHtml()
|
|
])
|
|
}
|