in src/PageSections/NameHeading.hack [18:31]
public function getMarkdown(): string {
$md = '# ';
if ($this->parent) {
$md .= $this->parent->getName().'::';
}
$def = $this->definition;
$md .= $def->getName();
if ($def is ScannedFunctionish) {
$md .= '()';
}
return Str\replace($md, '\\', '\\\\');
}