index.js 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. var Prism = require('prismjs');
  2. var languages = require('prismjs').languages;
  3. var path = require('path');
  4. var fs = require('fs');
  5. var cheerio = require('cheerio');
  6. var mkdirp = require('mkdirp');
  7. var DEFAULT_LANGUAGE = 'markup';
  8. var MAP_LANGUAGES = {
  9. 'py': 'python',
  10. 'js': 'javascript',
  11. 'rb': 'ruby',
  12. 'cs': 'csharp',
  13. 'sh': 'bash',
  14. 'html': 'markup'
  15. };
  16. // Base languages syntaxes (as of prism@1.6.0), extended by other syntaxes.
  17. // They need to be required before the others.
  18. var PRELUDE = [
  19. 'clike', 'javascript', 'markup', 'c', 'ruby', 'css',
  20. // The following depends on previous ones
  21. 'java', 'php'
  22. ];
  23. PRELUDE.map(requireSyntax);
  24. /**
  25. * Load the syntax definition for a language id
  26. */
  27. function requireSyntax(lang) {
  28. require('prismjs/components/prism-' + lang + '.js');
  29. }
  30. function getAssets() {
  31. var cssFiles = this.config.get('pluginsConfig.prism.css', []);
  32. var cssFolder = null;
  33. var cssNames = [];
  34. var cssName = null;
  35. if (cssFiles.length === 0) {
  36. cssFiles.push('prismjs/themes/prism.css');
  37. }
  38. cssFiles.forEach(function(cssFile) {
  39. var cssPath = require.resolve(cssFile);
  40. cssFolder = path.dirname(cssPath);
  41. cssName = path.basename(cssPath);
  42. cssNames.push(cssName);
  43. });
  44. return {
  45. assets: cssFolder,
  46. css: cssNames
  47. };
  48. }
  49. module.exports = {
  50. book: getAssets,
  51. ebook: function() {
  52. // Adding prism-ebook.css to the CSS collection forces Gitbook
  53. // reference to it in the html markup that is converted into a PDF.
  54. var assets = getAssets.call(this);
  55. assets.css.push('prism-ebook.css');
  56. return assets;
  57. },
  58. blocks: {
  59. code: function(block) {
  60. var highlighted = '';
  61. // Normalize language id
  62. var lang = block.kwargs.language || DEFAULT_LANGUAGE;
  63. lang = MAP_LANGUAGES[lang] || lang;
  64. // Try and find the language definition in components folder
  65. if (!languages[lang]) {
  66. try {
  67. requireSyntax(lang);
  68. } catch (e) {
  69. console.warn('Failed to load prism syntax: ' + lang);
  70. console.warn(e);
  71. }
  72. }
  73. if (!languages[lang]) lang = DEFAULT_LANGUAGE;
  74. // Check against html, prism "markup" works for this
  75. if (lang === 'html') {
  76. lang = 'markup';
  77. }
  78. try {
  79. // The process can fail (failed to parse)
  80. highlighted = Prism.highlight(block.body, languages[lang]);
  81. } catch (e) {
  82. console.warn('Failed to highlight:');
  83. console.warn(e);
  84. highlighted = block.body;
  85. }
  86. return highlighted;
  87. }
  88. },
  89. hooks: {
  90. // Manually copy prism-ebook.css into the temporary directory that Gitbook uses for inlining
  91. // styles from this plugin. The getAssets() (above) function can't be leveraged because
  92. // ebook-prism.css lives outside the folder referenced by this plugin's config.
  93. //
  94. // @Inspiration https://github.com/GitbookIO/plugin-styles-less/blob/master/index.js#L8
  95. init: function() {
  96. var book = this;
  97. if (book.output.name !== 'ebook') {
  98. // Logic below does not apply to non-ebook formats
  99. return;
  100. }
  101. var outputDirectory = path.join(book.output.root(), '/gitbook/gitbook-plugin-prism');
  102. var outputFile = path.resolve(outputDirectory, 'prism-ebook.css');
  103. var inputFile = path.resolve(__dirname, './prism-ebook.css');
  104. mkdirp.sync(outputDirectory);
  105. try {
  106. fs.writeFileSync(outputFile, fs.readFileSync(inputFile));
  107. } catch (e) {
  108. console.warn('Failed to write prism-ebook.css. See https://git.io/v1LHY for side effects.');
  109. console.warn(e);
  110. }
  111. },
  112. page: function(page) {
  113. var highlighted = false;
  114. var $ = cheerio.load(page.content);
  115. // Prism css styles target the <code> and <pre> blocks using
  116. // a substring CSS selector:
  117. //
  118. // code[class*="language-"], pre[class*="language-"]
  119. //
  120. // Adding "language-" to <pre> element should be sufficient to trigger
  121. // correct color theme.
  122. $('pre').each(function() {
  123. highlighted = true;
  124. const $this = $(this);
  125. $this.addClass('language-');
  126. });
  127. if (highlighted) {
  128. page.content = $.html();
  129. }
  130. return page;
  131. }
  132. }
  133. };