Divless HTML is a custom writing format that use a pair of square brackets for HTML tags and omit the div tag name. You can mix it with regular HTML.
Example :
html |
---|
[ [btn 'This is a button' .some-class #some-id {color:yellow}] <button> Another button in HTML format </button> ] |
Converted result in HTML :
html |
---|
<div> <button class="some-class" id="some-id" style="color:yellow;">This is a button</button> <button> Another button in HTML format </button> </div> |
Codetmp7 editor has divless HTML converter enabled by default and can be disabled from Settings menu.
Getting Started with Divless HTML Format
GitHub repository: https://github.com/tmpmachine/divless-html.
Intro to Divless HTML
June 08, 2024
Divless HTML is a custom writing format that use a pair of square brackets for HTML tags and omit the div tag name. You can mix it with regular HTML.
Example :
html |
---|
[ [btn 'This is a button' .some-class #some-id {color:yellow}] <button> Another button in HTML format </button> ] |
Converted result in HTML :
html |
---|
<div> <button class="some-class" id="some-id" style="color:yellow;">This is a button</button> <button> Another button in HTML format </button> </div> |
Codetmp7 editor has divless HTML converter enabled by default and can be disabled from Settings menu.
Getting Started with Divless HTML Format
GitHub repository: https://github.com/tmpmachine/divless-html.
Comments
Post a Comment