notion-block-renderer
Version:
Notion Block to React Components.
18 lines (17 loc) • 674 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SYNTAX_HIGHLIGHTER_CSS = exports.IS_CODE_HIGHLIGHTER = exports.IS_NEXTJS = exports.BLOCKS_PREFIX = exports.BLOCK_PREFIX = exports.PREFIX = exports.PACKAGE_NAME = void 0;
/**
* code block styles of react-syntax-highlighter
*/
const hljs_1 = require("react-syntax-highlighter/dist/cjs/styles/hljs");
/**
* initial values
*/
exports.PACKAGE_NAME = "notion-block-renderer";
exports.PREFIX = "nbr";
exports.BLOCK_PREFIX = "block";
exports.BLOCKS_PREFIX = "blocks";
exports.IS_NEXTJS = false;
exports.IS_CODE_HIGHLIGHTER = false;
exports.SYNTAX_HIGHLIGHTER_CSS = hljs_1.tomorrowNightBright;