docs/lib/render-content
Peter Bengtsson 8d13af951e
Set correct scope attributes on rowheaders tables (#35999)
Co-authored-by: Rachael Sewell <rachmari@github.com>
2023-03-30 11:41:33 +00:00
..
plugins Set correct scope attributes on rowheaders tables (#35999) 2023-03-30 11:41:33 +00:00
README.md remove all uses of encodeEntities (#34202) 2023-01-26 20:29:04 +00:00
create-processor.js Set correct scope attributes on rowheaders tables (#35999) 2023-03-30 11:41:33 +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 Remove ver_gt and ver_lt (#35838) 2023-03-23 22:33:59 +00:00
renderContent.js remove all uses of encodeEntities (#34202) 2023-01-26 20:29:04 +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:

  • 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.