Skip to content

Commit

Permalink
fix(core/help): make markdown examples code blocks to fix rendering (#…
Browse files Browse the repository at this point in the history
…8233)

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
Erik Munson and mergify[bot] committed May 1, 2020
1 parent a019b89 commit f6c7600
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/scripts/modules/core/src/help/help.contents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,10 @@ const helpContents: { [key: string]: string } = {
'if unchecked, marks the stage as successful right away without waiting for the Wercker job to complete',
'script.waitForCompletion':
'if unchecked, marks the stage as successful right away without waiting for the script to complete',
'markdown.examples':
'Some examples of markdown syntax: <br/> *<em>emphasis</em>* <br/> **<b>strong</b>** <br/> [link text](http://url-goes-here)',
// eslint-disable-next-line no-useless-escape
'markdown.examples': `
Some examples of markdown syntax: <br/> \`*italic*\` <br/> \`**bold**\` <br/> \`[link text](http://url-goes-here)\`
`,
'pipeline.config.webhook.payload': 'JSON payload to be added to the webhook call.',
'pipeline.config.webhook.cancelPayload':
'JSON payload to be added to the webhook call when it is called in response to a cancellation.',
Expand Down

0 comments on commit f6c7600

Please sign in to comment.