mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-22 12:06:28 +02:00
15 lines
472 B
Cheetah
15 lines
472 B
Cheetah
<?js
|
|
var description = obj;
|
|
var self = this;
|
|
var descriptionRegExp = new RegExp('<(p|ul|div|table)[^>]*>', 'i');
|
|
var descriptionIndex = description.search(descriptionRegExp);
|
|
?>
|
|
|
|
<?js if (descriptionIndex === -1) { ?>
|
|
<p><?js= description ?></p>
|
|
<?js } else if (descriptionIndex !== 0) { ?>
|
|
<p><?js= description.slice(0, descriptionIndex) ?></p>
|
|
<?js= description.slice(descriptionIndex) ?>
|
|
<?js } else { ?>
|
|
<?js= description ?>
|
|
<?js } ?>
|