Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/infrastructure/markup/markuprule/PhutilRemarkupLinebreaksRule.php
12241 views
1
<?php
2
3
final class PhutilRemarkupLinebreaksRule extends PhutilRemarkupRule {
4
5
public function apply($text) {
6
if ($this->getEngine()->isTextMode()) {
7
return $text;
8
}
9
10
return phutil_escape_html_newlines($text);
11
}
12
13
}
14
15