build(aio): update rho to new version

This version changes the expected syntax for emphasis.
The original Rho renderer uses `*` for strong an `_` for em.
But it is more standard in markdown to use `**` or `__` for bold
and `*` or `_` for em.
This commit is contained in:
Peter Bacon Darwin 2017-03-30 22:06:33 +01:00 committed by Pete Bacon Darwin
parent 330a8c90e4
commit 8c925bca71
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ describe('rho: renderMarkdown service', () => {
it('should convert markdown to HTML', () => { it('should convert markdown to HTML', () => {
const content = '# heading 1\n' + const content = '# heading 1\n' +
'\n' + '\n' +
'A paragraph with *bold* and _italic_.\n' + 'A paragraph with **bold** and _italic_.\n' +
'\n' + '\n' +
'* List item 1\n' + '* List item 1\n' +
'* List item 2'; '* List item 2';

View File

@ -4935,7 +4935,7 @@ restore-cursor@^2.0.0:
"rho@https://github.com/petebacondarwin/rho#master": "rho@https://github.com/petebacondarwin/rho#master":
version "0.4.0" version "0.4.0"
resolved "https://github.com/petebacondarwin/rho#0ad228a47ceb598648504ca8f57eba14aa0fc5e1" resolved "https://github.com/petebacondarwin/rho#c7dbd35fce17111de5131b8035b70e4f8c966362"
dependencies: dependencies:
html "*" html "*"
nomnom "*" nomnom "*"