Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92614400
PhutilRemarkupHorizontalRuleBlockRule.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
Fri, Nov 22, 01:25
Size
817 B
Mime Type
text/x-php
Expires
Sun, Nov 24, 01:25 (2 d)
Engine
blob
Format
Raw Data
Handle
22470936
Attached To
rPHU libphutil
PhutilRemarkupHorizontalRuleBlockRule.php
View Options
<?php
final
class
PhutilRemarkupHorizontalRuleBlockRule
extends
PhutilRemarkupBlockRule
{
/**
* This rule executes at priority `300`, so it can preempt the list block
* rule and claim blocks which begin `---`.
*/
public
function
getPriority
()
{
return
300
;
}
public
function
getMatchingLineCount
(
array
$lines
,
$cursor
)
{
$num_lines
=
0
;
$pattern
=
'/^_{3,}$|^
\*\s
?
\*\s
?
\*
(
\s
|
\*
)*$|^
\-\s
?
\-\s
?
\-
(
\s
|
\-
)*$/'
;
if
(
preg_match
(
$pattern
,
rtrim
(
$lines
[
$cursor
],
"
\n\r
"
)))
{
$num_lines
++;
$cursor
++;
while
(
isset
(
$lines
[
$cursor
])
&&
!
strlen
(
trim
(
$lines
[
$cursor
])))
{
$num_lines
++;
$cursor
++;
}
}
return
$num_lines
;
}
public
function
markupText
(
$text
,
$children
)
{
return
phutil_tag
(
'hr'
,
array
(
'class'
=>
'remarkup-hr'
));
}
}
Event Timeline
Log In to Comment