docs/lib/render-content
Peter Bengtsson 987fef9315
correct how legacy enterprise links are rewritten (#25183)
Co-authored-by: Mike Surowiec <mikesurowiec@users.noreply.github.com>
2022-02-09 16:09:42 +00:00
..
plugins correct how legacy enterprise links are rewritten (#25183) 2022-02-09 16:09:42 +00:00
README.md Move render-content code to this repo (#16544) 2020-11-25 11:20:23 -05:00
create-processor.js cache asset images more aggressively (#23553) 2021-12-10 13:01:48 +00:00
doctocat-link-icon.js Use Doctocat link header style (#21615) 2021-09-21 18:14:38 -04:00
index.js remove liquid tags (#20937) 2021-08-18 15:52:44 +00:00
liquid.js Pretty format (#20352) 2021-07-14 14:35:01 -07:00
renderContent.js exit early in renderContent() on empty template (#22979) 2021-11-19 04:51:12 +00:00

README.md

Markdown and Liquid rendering pipeline.

Usage

const renderContent = require('.')

const html = await renderContent(`
# Beep
{{ foo }}
`, {
  foo: 'bar'
})

Creates:

<h1 id="beep"><a href="#beep">Beep</a></h1>
<p>bar</p>

API

renderContent(markdown, context = {}, options = {})

Render a string of markdown with optional context. Returns a Promise.

Liquid will be looking for includes in ${process.cwd()}/includes.

Options:

  • encodeEntities: Encode html entities. Default: false.
  • fileName: File name for debugging purposes.
  • textOnly: Output text instead of html using cheerio.

.liquid

The Liquid instance used internally.

Code block headers

You can add a header to code blocks by adding the {:copy} annotation after the code fences:

```js{:copy}
const copyMe = true
```

This renders:

image

The un-highlighted text is available as button.js-btn-copy's data-clipboard-text attribute.