true, "linkify" => true, ]); $md->plugin(new MarkdownItFootnote()); return $md->render($markdown); } function parseCountryField($countryField) { if (empty($countryField)) return null; $delimiters = [',', '/', '&', ' and ']; $countries = [$countryField]; foreach ($delimiters as $delimiter) { $tempCountries = []; foreach ($countries as $country) { $tempCountries = array_merge($tempCountries, explode($delimiter, $country)); } $countries = $tempCountries; } $countries = array_map('trim', $countries); $countries = array_map('getCountryName', $countries); $countries = array_filter($countries); return implode(', ', array_unique($countries)); } function getCountryName($countryName) { $isoCodes = new \Sokil\IsoCodes\IsoCodesFactory(); $countries = $isoCodes->getCountries(); $country = $countries->getByAlpha2($countryName); if ($country) return $country->getName(); return ucfirst(strtolower($countryName)); } function pluralize($count, $string, $trailing = '') { if ((int)$count === 1) return $string; return $string . 's' . ($trailing ? $trailing : ''); } ?>