HTML create shorthand for multiple spaces -
i have write documentation program in classis html (no css/xml etc.). problem appears when have enter multiple spaces/tabs in document.
since there no "tab" in html, using 4 non-breakable spaces tab character. however, when need 2 tabs, becomes repetitive enter
8 times.
is there possibility create/define custom shorthand/shortcut notation this, e.g. instead of entering
8 times, can use &_8nbsp;
create 8 inline spaces ?
to respect whitespace in html, can use pre
element or equivalent css (white-space: pre
).
Comments
Post a Comment