summary refs log tree commit diff
path: root/pbmtext.html
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-06-28 19:39:47 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-06-28 19:39:47 +0000
commit2222b5020909d4867f10cf72720df36e3483c0de (patch)
tree7a8b56782d895e753e39e3cce1c0237b18915855 /pbmtext.html
parentdab40b54733b6f31bc41106dc126e4f387e8bb37 (diff)
downloadnetpbm-mirror-2222b5020909d4867f10cf72720df36e3483c0de.tar.gz
netpbm-mirror-2222b5020909d4867f10cf72720df36e3483c0de.tar.xz
netpbm-mirror-2222b5020909d4867f10cf72720df36e3483c0de.zip
Replace character entity references with plain double quotes
git-svn-id: http://svn.code.sf.net/p/netpbm/code/userguide@2590 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'pbmtext.html')
-rw-r--r--pbmtext.html34
1 files changed, 17 insertions, 17 deletions
diff --git a/pbmtext.html b/pbmtext.html
index 39f5a8a0..fc446100 100644
--- a/pbmtext.html
+++ b/pbmtext.html
@@ -56,7 +56,7 @@ one line of text, whereas <b>pbmtext</b> can create multiple lines.
 
 <p><b>pbmtext</b> is meant for small quantities of simple text.  If you're
 working with a <em>document</em>, you would be better off using a document
-formatting program to &quot;print&quot; to a Postscript file, then
+formatting program to "print" to a Postscript file, then
 feeding that Postscript to <b>pstopnm</b>.
 
 <H2 id="options">OPTIONS</H2>
@@ -74,12 +74,12 @@ feeding that Postscript to <b>pstopnm</b>.
 Window System <a href="http://xfree86.org/current/bdf.pdf">BDF (Bitmap
 Distribution Format)</a> file or as a PBM file in a special form.
 
-<p>The default is the built in font &quot;bdf.&quot;
+<p>The default is the built in font "bdf."
 
-<p>&quot;bdf&quot; is Times-Roman 15 pixels high.  (That's about 14
+<p>"bdf" is Times-Roman 15 pixels high.  (That's about 14
 point type printed at 75 dpi).
 
-<p>&quot;fixed&quot; is a built in fixed width font.
+<p>"fixed" is a built in fixed width font.
 
 <p>For information about other fonts, and how to make one of your own,
 see <a href="#fonts">Fonts</a> below.
@@ -211,9 +211,9 @@ e.g. in an X11 window.
 
 <PRE>
 
-    M &quot;,/^_[`jpqy| M
+    M ",/^_[`jpqy| M
 
-    /  !&quot;#$%&amp;'()*+ /
+    /  !"#$%&amp;'()*+ /
     &lt; ,-./01234567 &lt;
     &gt; 89:;&lt;=&gt;?@ABC &gt;
     @ DEFGHIJKLMNO @
@@ -222,7 +222,7 @@ e.g. in an X11 window.
     } hijklmnopqrs }
     ~ tuvwxyz{|}~  ~
 
-    M &quot;,/^_[`jpqy| M
+    M ",/^_[`jpqy| M
 
 </PRE>
 
@@ -245,8 +245,8 @@ message telling you that the number of lines in the font isn't
 divisible by 11, or it can't find the blank band around the inner
 rectangle.  Sometimes the symptom is that one of the characters
 displays with a piece of the character that is next to it in the
-matrix.  For example, &quot;l&quot; might display with a little piece
-of the &quot;m&quot; attached on its right.
+matrix.  For example, "l" might display with a little piece
+of the "m" attached on its right.
 
 <p>Do a screen grab or window dump of that text, using for instance
 <B>xwd</B>, <B>xgrabsc</B>, or <B>screendump</B>.  Convert the result
@@ -287,7 +287,7 @@ any other multi-byte format.
 <pre>
 <tt>
     $ awk 'BEGIN { for (i=0x01; i&lt;=0xFF; i++)  
-                    { printf(&quot;%c%s&quot;,i,i%16==15 ? &quot;\n&quot;:&quot;&quot;); } }' |\
+                    { printf("%c%s",i,i%16==15 ? "\n":""); } }' |\
       pbmtext -f font.bdf &gt; dump.pbm
 </tt>
 </pre>
@@ -306,24 +306,24 @@ line and the next line, which should be CHARSET_ENCODING:
 <pre>
 <tt>
     $ grep -A1 CHARSET_REGISTRY font-a.bdf
-    CHARSET_REGISTRY &quot;ISO8859&quot;
-    CHARSET_ENCODING &quot;1&quot;
+    CHARSET_REGISTRY "ISO8859"
+    CHARSET_ENCODING "1"
     
     $ grep -A1 CHARSET_REGISTRY font-b.bdf
-    CHARSET_REGISTRY &quot;ISO10646&quot;
-    CHARSET_ENCODING &quot;1&quot;
+    CHARSET_REGISTRY "ISO10646"
+    CHARSET_ENCODING "1"
 </tt>
 </pre>
 
 <p>The latter is Unicode.  BDF files coded in ISO 16046-1 usually work for
 Western European languages, because ISO 16046-1 expands ISO 8859-1 (also
-called &quot;Latin-1&quot;) while maintaining the first 256 code points.  ISO
+called "Latin-1") while maintaining the first 256 code points.  ISO
 8859-1 itself is a superset of ASCII.  Run the above command and verify the
 necessary glyphs are present.
 
 <p>It may sound strange that <b>pbmtext</b> accepts font files encoded in
 Unicode but not input text in Unicode.  This is because Unicode provides
-several &quot;numbering schemes&quot;.
+several "numbering schemes".
 
 <p>When rendering text in character sets other than ISO 8859-1, one often has
 to produce a BDF file in the given encoding from a master BDF file encoded in
@@ -340,7 +340,7 @@ don't, you can download <b>ucs2any.pl</b> from <a
 href="http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html">Unicode fonts and tools
 for X11</a>.  This website has much useful information on fonts.
 
-<p>Another converter is <b>trbdf</b>, included in the &quot;trscripts&quot;
+<p>Another converter is <b>trbdf</b>, included in the "trscripts"
 package, available in some GNU/Linux distributions.
 
 <p>BDF files encoded in ISO 8859-2, ISO 8859-7, koi8-r, etc. are available