mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 21:59:44 +08:00
38 lines
948 B
JavaScript
38 lines
948 B
JavaScript
'use strict'
|
|
|
|
module.exports = gedcom
|
|
gedcom.displayName = 'gedcom'
|
|
gedcom.aliases = []
|
|
function gedcom(Prism) {
|
|
Prism.languages.gedcom = {
|
|
'line-value': {
|
|
// Preceded by level, optional pointer, and tag
|
|
pattern:
|
|
/(^[\t ]*\d+ +(?:@\w[\w!"$%&'()*+,\-./:;<=>?[\\\]^`{|}~\x80-\xfe #]*@ +)?\w+ ).+/m,
|
|
lookbehind: true,
|
|
inside: {
|
|
pointer: {
|
|
pattern: /^@\w[\w!"$%&'()*+,\-./:;<=>?[\\\]^`{|}~\x80-\xfe #]*@$/,
|
|
alias: 'variable'
|
|
}
|
|
}
|
|
},
|
|
tag: {
|
|
// Preceded by level and optional pointer
|
|
pattern:
|
|
/(^[\t ]*\d+ +(?:@\w[\w!"$%&'()*+,\-./:;<=>?[\\\]^`{|}~\x80-\xfe #]*@ +)?)\w+/m,
|
|
lookbehind: true,
|
|
alias: 'string'
|
|
},
|
|
level: {
|
|
pattern: /(^[\t ]*)\d+/m,
|
|
lookbehind: true,
|
|
alias: 'number'
|
|
},
|
|
pointer: {
|
|
pattern: /@\w[\w!"$%&'()*+,\-./:;<=>?[\\\]^`{|}~\x80-\xfe #]*@/,
|
|
alias: 'variable'
|
|
}
|
|
}
|
|
}
|