1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/packages/renderer
2022-09-18 21:22:41 +01:00
..
assets All: Update Mermaid 8.13.9 to 9.1.7 (#6849) 2022-09-18 21:22:41 +01:00
lib All: Use Lerna to manage monorepo 2020-11-05 16:58:23 +00:00
MdToHtml Desktop: Add PDF full screen viewer (#6821) 2022-09-11 14:58:32 +01:00
tests Tools: Cleaned up tests and splitted sync tests into smaller parts 2020-12-01 18:05:24 +00:00
Tools All: Use Lerna to manage monorepo 2020-11-05 16:58:23 +00:00
vendor All: Use Lerna to manage monorepo 2020-11-05 16:58:23 +00:00
.gitignore All: Use Lerna to manage monorepo 2020-11-05 16:58:23 +00:00
assetsToHeaders.js All: Use Lerna to manage monorepo 2020-11-05 16:58:23 +00:00
defaultNoteStyle.js Desktop: Better handling of bold text to simplify customisation (#5732) 2021-12-28 09:57:34 +00:00
headerAnchor.ts Server: Added Help page for Joplin Cloud 2021-08-31 13:46:46 +01:00
highlight.ts Chore: Optimize highlight.js package size 2022-05-26 16:46:56 +01:00
HtmlToHtml.ts Server: Fixed publishing of notes with HTML markup type 2021-08-12 17:23:49 +01:00
htmlUtils.test.ts Desktop: Security: Fixes #6004: Prevent XSS in Goto Anything 2022-01-15 16:53:24 +00:00
htmlUtils.ts Fixed MdToHtml regression 2022-04-26 12:52:48 +01:00
index.ts Server: Added Help page for Joplin Cloud 2021-08-31 13:46:46 +01:00
InMemoryCache.ts Tools: Apply rule @typescript-eslint/member-delimiter-style 2020-11-12 19:29:22 +00:00
jest.config.js Desktop, Mobile: Fixes #4119: Fixed links imported from ENEX as HTML 2020-11-20 16:04:47 +00:00
MarkupToHtml.ts Tools: Add Open Graph tags to website 2022-02-24 19:37:34 +00:00
MdToHtml.ts Desktop: PDF scroll persistence (#6747) 2022-08-27 13:32:20 +01:00
noteStyle.ts Desktop: New Embedded Pdf Viewer (#6681) 2022-08-04 10:12:22 +01:00
package.json All: Update Mermaid 8.13.9 to 9.1.7 (#6849) 2022-09-18 21:22:41 +01:00
pathUtils.ts Desktop: Add support for media players (video, audio and PDF) 2020-12-09 21:30:51 +00:00
publish.sh Tools: Fixed npm publish 2021-12-27 18:02:18 +01:00
README.md Server: Add support for sharing notes via a link 2021-01-29 18:45:11 +00:00
stringUtils.js All: Use Lerna to manage monorepo 2020-11-05 16:58:23 +00:00
tsconfig.json All: Use Lerna to manage monorepo 2020-11-05 16:58:23 +00:00
urlUtils.js All: Use Lerna to manage monorepo 2020-11-05 16:58:23 +00:00
utils.ts Server: Add support for sharing notes via a link 2021-01-29 18:45:11 +00:00

Joplin Renderer

This is the renderer used by Joplin to render notes in Markdown or HTML format.

Installation

npm i -s joplin-renderer

Certain plugins require additional assets like CSS, fonts, etc. These assets are in the /assets directory and should be copied to wherever the application can find them at runtime.

Usage

const { MarkupToHtml } = require('joplin-renderer');

const options = {};

// The notes are rendered using the provided theme. The supported theme properties are in `defaultNoteStyle.js`
// and this is what is used if no theme is provided. A `theme` object can be provided to override default theme
// properties.
const theme = {};

const markdown = "Testing `MarkupToHtml` renderer";

const markupToHtml = new MarkupToHtml(options);
const result = await markupToHtml.render(MarkupToHtml.MARKUP_LANGUAGE_MARKDOWN, markdown, theme, options);

console.info('HTML:', result.html);
console.info('Plugin assets:', result.pluginAssets);

When calling render(), an object with the following properties is returned:

  • html: The rendered HTML code
  • pluginAssets: The assets required by the plugins

The assets need to be loaded by the calling application. For example this is how they are loaded in the Joplin desktop application:

function loadPluginAssets(assets) {
	for (let i = 0; i < assets.length; i++) {
		const asset = assets[i];

		if (asset.mime === 'text/css') {
			const link = document.createElement('link');
			link.rel = 'stylesheet';
			link.href = 'pluginAssets/' + asset.name;
			document.getElementById('joplin-container-styleContainer').appendChild(link);
		}
	}
}

Development

Updating a markdown-it plugin

Whenever updating a Markdown-it plugin, such as Katex or Mermaid, make sure to run npm run buildAssets, which will compile the CSS and JS for use in the Joplin applications.

Adding asset files

A plugin (or rule) can have any number of assets, such as CSS or font files, associated with it. To add an asset to a plugin, follow these steps:

  • Add the file under /assets/PLUGIN_NAME/your-asset-file.css
  • Register this file within the plugin using context.pluginAssets[PLUGIN_NAME] = [{ name: 'your-asset-file.css' }]

See katex.js for an example of how this is done.

Adding inline CSS

A plugin can ask for some CSS to be included inline in the rendered HTML. This is convenient as it means no extra file needs to be packaged. Use this syntax to do this:

context.pluginAssets[PLUGIN_NAME] = [
	{
		inline: true,
		text: ".my-css { background-color: 'green' }",
		mime: 'text/css',
	},
];