Raw data from RMS
';
echo json_encode($resp, JSON_PRETTY_PRINT);
echo ' ';
}
}
function next_renderExperience(array $modules) {
foreach ($modules as $m) {
next_renderModule($m);
}
}
function next_renderModule(stdClass $module) {
$type = strtr($module->type, '_', '-');
$titleTag = $type == 'inline-header-module' ? 'h1' : 'h2';
echo "<$type id=\"$module->id\" module-style=\"$module->style\">";
echo "<$titleTag>"
. htmlspecialchars($module->title ?? '[no title]')
. "$titleTag>";
if (isset($module->description)) {
echo '