You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an HTML document, with handlebars, partials, ... working well. "Handlebars" do the job.
But, I need to include into my HTML document several <iframe>, to separate different CSS stylesheets, which can interfere among them. So, I write something like : <iframe width="100%" src="data:text/plain;base64,{{> (lookup character 'chr_partial64') }}"></iframe>
"character" being a JSON object, chr_partial64 a partial with base64 encoded value.
When rendering, the <iframe> is containing the HTML decoded from base64 data, but it is not interpreted by handlebars (the iframe HTML still contains handlebars tags (each, if, ...) not interpreted.
Is there a way to tell handlebars to interpret ? (I tested the triple mustaches, but unsuccessfully..
This discussion was converted from issue #2035 on July 18, 2024 19:02.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Hi,
I have an HTML document, with handlebars, partials, ... working well. "Handlebars" do the job.
But, I need to include into my HTML document several <iframe>, to separate different CSS stylesheets, which can interfere among them. So, I write something like :
<iframe width="100%" src="data:text/plain;base64,{{> (lookup character 'chr_partial64') }}"></iframe>"character" being a JSON object, chr_partial64 a partial with base64 encoded value.
When rendering, the <iframe> is containing the HTML decoded from base64 data, but it is not interpreted by handlebars (the iframe HTML still contains handlebars tags (each, if, ...) not interpreted.
Is there a way to tell handlebars to interpret ? (I tested the triple mustaches, but unsuccessfully..
All reactions