The question was:
What I was expecting was the ability to color text at my will, just
for emphasis, when it wasn't code but just a letter or a list for
myself. .
Therefore WordPad is THE solution evenwhile you did not accept that WordPad is
editing a text ...
What these nice people are trying to tell you is that by definition, a
text editor saves only a simple character set to represent numbers,
characters, and a few symbols. The only non-printing characters it
stores are newline, tab, and form-feed.
Better text editors have features that make it easier on the user while
editing, like syntax highlighting, and spell check.
With syntax highlighting the editor recognizes sequences of characters
that match a known syntax. For example, it you tell the editor the
output will be used as HTML, the editor recognizes the sequence "<p>"
and displays it differently (highlighted). This decode process is built
into the editor and isn't saved in the output document.
A word processor on the other hand (even one with limited features like
Wordpad) allows the user to define a quasi-syntax on the fly (i.e.
"color text at my will.") In order to do this, the word processor must
save special flags with the "text" to afford decoding at a future time.
If I create a document containing only the following:
This is a bold statement.
And I want the word bold to in fact be bold, a text editor will store
only "This is a bold statement." However a word processor will save the
original text along with instructions and flags that tell the next
session what to do.
e.g.
{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fswiss\fcharset0
Arial;}}
{\*\generator Msftedit 5.41.15.1515;}\viewkind4\uc1\pard\f0\fs20 This is
a \b bold\b0 statement.\par
}
With the extra hieroglyphics inserted it is no longer a text file, and
would break the file for use as HTML, CSS, a script, or a program.
Its like saying you want a circle with corners. Once you add a corner,
it is no longer a circle.
Bottom line, besides the semantics of text editor vs word processor,
what is your ultimate purpose for the final document? If it is to be
used as an HTML or CSS file it must not contain any of the word
processing "flags." If you still want to "color text at my will", you
can save the file as rtf until complete, and then "save as.." to HTML,
giving you an "rtf" version, and an "HTML" version. Though some editors
will require you to "save as.." to txt and then rename it to html.
If keeping two versions (a development "rtf" and a production "html") of
your file isn't a problem, why limit yourself to Wordpad when there are
fuller featured word processors available? Just keep in mind, many will
add their own markup if you "save as HTML", so you may have to use the
two step "save as txt"; rename as "HTML."