Please edit this file:
modules/mod_image_show_gk4/styles/gk_bluap/view.php
and modify this lines:
- Code: Select all
// creating slide title
$title = htmlspecialchars(($this->config['image_show_data'][$i]->type == "text") ? $this->config['image_show_data'][$i]->name : 'Only the text slides can be used');
$title = preg_replace('/__(.*?)__/i', '<strong>${1}</strong>', $title);
// creating slide content
to:
- Code: Select all
// creating slide title
$title = htmlspecialchars(($this->config['image_show_data'][$i]->type == "text") ? $this->config['image_show_data'][$i]->name : 'Only the text slides can be used');
$title = preg_replace('/__(.*?)__/i', '<strong>${1}</strong>', $title);
$title = str_replace(array('[leftbracket]', '[rightbracket]'), array('<', '>'), $title);
// creating slide content
It should allow you to use:
- Code: Select all
[leftbracket]br /[rightbracket]
that will render to:
- Code: Select all
<br />