E-Tags
All codes on this page only work on bundlrs. If you are copying and pasting these codes, you must remove the zero width space (red dot • in editor) between e
and #
or else they will not work. The space is necessary to escape the codes on this page so you can see them in text form.
Theme
e#theme light#
Forces the page into light theme
e#theme dark#
Forces the page into dark theme
Class
e#class classname#
text here e#close#
e#class class1 class2#
text here e#close#
Adds an HTML class to enclosed elements. Multiple classes can be added at once.
Evaluates to:
text here
text here
Example:
e#class chip# Hello! e#close#
Renders as: Hello!
HTML
e#html tag#
text here e#chtml tag#
e#html tag attribute=value1 attribute2=value2#
text here e#chtml tag#
Adds HTML tags to enclosed elements. This allows you to use otherwise blocked tags such as <details>
. Any number of attributes may optionally be included. Attribute values cannot contain spaces. Unlike with regular HTML tags, you can use Markdown formatting inside of HTML e-tags.
Evaluates to:
text here
text here
Example:
e#html marquee# THIS TEXT WILL SCROLL e#chtml marquee#
Renders as:
Coming soon