Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101164589
PhutilRemarkupEngineRemarkupNoteBlockRule.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
Thu, Feb 6, 09:10
Size
401 B
Mime Type
text/x-php
Expires
Sat, Feb 8, 09:10 (2 d)
Engine
blob
Format
Raw Data
Handle
24100701
Attached To
rPHU libphutil
PhutilRemarkupEngineRemarkupNoteBlockRule.php
View Options
<?php
/**
* @group markup
*/
final
class
PhutilRemarkupEngineRemarkupNoteBlockRule
extends
PhutilRemarkupEngineBlockRule
{
public
function
getBlockPattern
()
{
return
"/^NOTE: /"
;
}
public
function
shouldMergeBlocks
()
{
return
false
;
}
public
function
markupText
(
$text
)
{
return
'<div class="remarkup-note">'
.
$this
->
applyRules
(
$text
).
'</div>'
;
}
}
Event Timeline
Log In to Comment