11 lines
244 B
Plaintext
11 lines
244 B
Plaintext
COMPONENT(Request& context)
|
|
{
|
|
String lang = first(context.call["lang"].to_string(), "plain");
|
|
<>
|
|
<section>
|
|
<p><strong>Code block:</strong> <?= lang ?></p>
|
|
<div><?: context.call["default_html"].to_string() ?></div>
|
|
</section>
|
|
</>
|
|
}
|