diff --git a/schedule/parse.php b/schedule/parse.php index 766ec17..076567e 100644 --- a/schedule/parse.php +++ b/schedule/parse.php @@ -286,7 +286,8 @@ function parseData($config, $data) { $speaker = $data['speakers'][$uid]; $name = $speaker['first_name'] . ' ' . $speaker['last_name']; - $organisation = empty($speaker['organisation']) ? '' : (' /' . $speaker['organisation'] . '/'); + $organisation = empty($speaker['organisation']) ? '' : + ('
/⁠' . $speaker['organisation'] . '⁠/'); $spk[] = '' . $name . '' . $organisation; }