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.
56 lines
1.2 KiB
TypeScript
56 lines
1.2 KiB
TypeScript
import type {Align} from './lib/infer.js'
|
|
|
|
export {gfmTableHtml} from './lib/html.js'
|
|
export {gfmTable} from './lib/syntax.js'
|
|
|
|
/**
|
|
* Augment types.
|
|
*/
|
|
declare module 'micromark-util-types' {
|
|
/**
|
|
* State tracked to compile events as HTML,
|
|
* extended by `micromark-extension-gfm-table`.
|
|
*/
|
|
interface CompileData {
|
|
/**
|
|
* Alignment of current table.
|
|
*/
|
|
tableAlign?: Array<Align> | undefined
|
|
/**
|
|
* Current table column.
|
|
*/
|
|
tableColumn?: number | undefined
|
|
}
|
|
|
|
/**
|
|
* Augment token;
|
|
* `align` is patched on `table` tokens by
|
|
* `micromark-extension-gfm-table`.
|
|
*/
|
|
interface Token {
|
|
/**
|
|
* Alignment of current table.
|
|
*/
|
|
_align?: Array<Align> | undefined
|
|
}
|
|
|
|
/**
|
|
* Map of allowed token types,
|
|
* extended by `micromark-extension-gfm-table`.
|
|
*/
|
|
interface TokenTypeMap {
|
|
tableBody: 'tableBody'
|
|
tableCellDivider: 'tableCellDivider'
|
|
tableContent: 'tableContent'
|
|
tableData: 'tableData'
|
|
tableDelimiterFiller: 'tableDelimiterFiller'
|
|
tableDelimiterMarker: 'tableDelimiterMarker'
|
|
tableDelimiterRow: 'tableDelimiterRow'
|
|
tableDelimiter: 'tableDelimiter'
|
|
tableHeader: 'tableHeader'
|
|
tableHead: 'tableHead'
|
|
tableRow: 'tableRow'
|
|
table: 'table'
|
|
}
|
|
}
|