1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00

Support ` for delimiting monospaced text in Remarkup

Summary: Update ducks for D1773.

Test Plan: Remarkup_Reference.html

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, epriestley

Differential Revision: https://secure.phabricator.com/D1774
This commit is contained in:
vrana 2012-03-04 03:13:22 -08:00
parent 87c60abbd0
commit 846cea715f

View file

@ -18,7 +18,7 @@ formatting text in Remarkup.
These are inline styles, and can be applied to most text: These are inline styles, and can be applied to most text:
**bold** //italic// ##monospaced## **bold** //italic// ##monospaced## `monospaced`
D123 T123 rX123 # Link to Objects D123 T123 rX123 # Link to Objects
{D123} {T123} # Link to Objects (Full Name) {D123} {T123} # Link to Objects (Full Name)
{F123} # Embed Images {F123} # Embed Images
@ -46,9 +46,10 @@ Format **basic text styles** like this:
**bold text** **bold text**
//italic text// //italic text//
##monospaced text## ##monospaced text##
`monospaced text`
Those produce **bold text**, //italic text// and ##monospaced text##, Those produce **bold text**, //italic text//, ##monospaced text## and
respectively. `monospaced text`, respectively.
= Layout = = Layout =