textlint-plugin-rst
Version:
reStructuredText support for textlint
26 lines (23 loc) • 533 B
JavaScript
// LICENSE : MIT
;
export const syntaxMap = {
"document": "Document",
"paragraph": "Paragraph",
"block_quote": "BlockQuote",
"list_item": "ListItem",
"bullet_list": "List",
"title": "Header",
"literal_block": "CodeBlock",
"reference": "Link",
"meta": "Html",
"text": "Str",
"emphasis": "Emphasis",
"strong": "Strong",
"image": "Image",
"inline": "Code"
};
export const reSTAttributeKeyMap = {
"tagname": "type",
"rawsource": "raw",
"text": "value"
};