Text editors

From Usenet Big-8 Management Board
Revision as of 01:06, 8 July 2010 by Moleski (talk | contribs) (Created page with '== A Discussion of Plain Text == A text editor produces plain text. So, for example, there are no commands in the text for <u>underlining,</u> '''bold''', ''italics'', <s>or st…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

A Discussion of Plain Text

A text editor produces plain text. So, for example, there are no commands in the text for underlining, bold, italics, or strike-through.

This section is typed in plain text.  The characters are all equal in width
rather than being proportionally spaced.

In Windows, you may use Notepad to produce plain text. Or you may compose your document in a more powerful wordprocessor as long as you remember to save it as ASCII (DOS) text. Saving it as ANSI may also work.

HTML is the opposite of plain text. It is filled with special tags that tell an HTML interpreter how to format the text.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Sample HTML Document</title>
</head>

<body>
<p>This sample shows what <i>HTML</i> formatting looks like.</p>
<p>It is <b>only a very limited sample.</b></p>
<blockquote>
  <p>This is almost legible! </p>
</blockquote>
</body>
</html>

When you post your RFD to news.announce.newgroups, be sure to do so in plain text. Turn off HTML formatting, please.

Plain text is the universal language of newsgroups. The goal of setting up the RFD in plain text is to make it easy for anyone to read it and understand what it means without having to strip it of extra formatting codes.