Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93236011
PhutilRemarkupEngineRemarkupDefaultBlockRule.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, Nov 27, 06:08
Size
549 B
Mime Type
text/x-php
Expires
Fri, Nov 29, 06:08 (2 d)
Engine
blob
Format
Raw Data
Handle
22600844
Attached To
rPHU libphutil
PhutilRemarkupEngineRemarkupDefaultBlockRule.php
View Options
<?php
/**
* @group markup
*/
final
class
PhutilRemarkupEngineRemarkupDefaultBlockRule
extends
PhutilRemarkupEngineBlockRule
{
public
function
getBlockPattern
()
{
return
"/.*/"
;
}
public
function
shouldMergeBlocks
()
{
return
false
;
}
public
function
markupText
(
$text
)
{
$text
=
$this
->
applyRules
(
$text
);
$lines
=
explode
(
"
\n
"
,
trim
(
$text
));
$implode_on
=
$this
->
getEngine
()->
getConfig
(
'preserve-linebreaks'
)
?
'<br />'
:
''
;
return
'<p>'
.
trim
(
implode
(
$implode_on
.
"
\n
"
,
$lines
)).
'</p>'
;
}
}
Event Timeline
Log In to Comment