Long read template

Example usage

const url = await webview.article.create({
    ref: 'news-item',
    title: 'Hello world',
    content: `Lorem ipsum dolor sit amet, consectetur adipiscing elit.`
  })

Within content, you can use Markdown to format text.

const url = await webview.article.create({
    ref: 'article',
    title: 'Hello world',
    content: `
      # Title

      A simple paragraph with text

      ## Heading 2

      - List item 1
      - List item 2
      - List item 3
`
  })

Properties

PropertyTypeExampleDescriptionRequired
refstringnews-articleRequired unless you want
titlestringSelect productDescriptive titles shown in the topYes
contentstringLoren ipsum dolor....Markdown supported contentYes