You know, when you type something like this:
It will actually appear all with 1 space only, like clasic html(with the added new lines).
Example:
something something
something som e other thing
Wouldnt a tag that basically simulates, or actually does <pre>-like formatting? So basically when you have tab, it will actually render a tab instead of single white space.
Suggested tag: [unform] maybe? I dont know, I am not really good when it comes to creating names from nothing.
I dont know how flexible is BBcode implementing, but possible implementation would be wrapping the input text in <pre class="somename"> and in some .css having something like
(code just in case).
Yes, I could just use
JASS:
something something
something som e other thing
It will actually appear all with 1 space only, like clasic html(with the added new lines).
Example:
something something
something som e other thing
Wouldnt a tag that basically simulates, or actually does <pre>-like formatting? So basically when you have tab, it will actually render a tab instead of single white space.
Suggested tag: [unform] maybe? I dont know, I am not really good when it comes to creating names from nothing.
I dont know how flexible is BBcode implementing, but possible implementation would be wrapping the input text in <pre class="somename"> and in some .css having something like
JASS:
pre.somename{
font-family: inherit;
}
pre.somename code{
font-family: inherit;
}
Yes, I could just use
or blocks, but I have file that I would potentially like to place on hive, and the file is roughly 4200 lines long, so parsing such file would take some time(to properly indent it), because it is wrote in notepad++ with extensive use of tabs.
Yes I could actually use Jass or code block, or even highlight block, but all of these have side effects. thinks in code block are hardly readable, Jass block creates additional background color as well as border and both Jass and highlight blocks potentially color the input which for textual file is not really the most desirable efect.
Yes I could actually use Jass or code block, or even highlight block, but all of these have side effects. thinks in code block are hardly readable, Jass block creates additional background color as well as border and both Jass and highlight blocks potentially color the input which for textual file is not really the most desirable efect.
Last edited: