Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95714430
PhutilRemarkupMonospaceRule.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Dec 18, 15:18
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Dec 20, 15:18 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23041011
Attached To
rPHU libphutil
PhutilRemarkupMonospaceRule.php
View Options
<?php
final
class
PhutilRemarkupMonospaceRule
extends
PhutilRemarkupRule
{
public
function
getPriority
()
{
return
100.0
;
}
public
function
apply
(
$text
)
{
// NOTE: We don't require a trailing non-boundary on the backtick syntax,
// to permit the use case of naming and pluralizing a class, like
// "Load all the `PhutilArray`s and then iterate over them." In theory, the
// required \B on the leading backtick should protect us from most
// collateral damage.
return
preg_replace_callback
(
'@##([
\s\S
]+?)##|
\B
`(.+?)`@'
,
array
(
$this
,
'markupMonospacedText'
),
$text
);
}
protected
function
markupMonospacedText
(
$matches
)
{
if
(
$this
->
getEngine
()->
isTextMode
())
{
$result
=
$matches
[
0
];
}
else
{
$match
=
isset
(
$matches
[
2
])
?
$matches
[
2
]
:
$matches
[
1
];
$result
=
phutil_tag
(
'tt'
,
array
(
'class'
=>
'remarkup-monospaced'
,
),
$match
);
}
return
$this
->
getEngine
()->
storeText
(
$result
);
}
}
Event Timeline
Log In to Comment