diff options
| author | craig <craig@11d20701-8431-0410-a711-e3c959e3b870> | 2012-01-01 11:40:09 +0000 |
|---|---|---|
| committer | craig <craig@11d20701-8431-0410-a711-e3c959e3b870> | 2012-01-01 11:40:09 +0000 |
| commit | 7ed83b6c6666eb8b6b104c211ae7e52907350372 (patch) | |
| tree | 4430b556abac0ad660a0aacf1887d77f85d8be02 /scribus/doc/en/importhints4.html | |
| download | scribus-7ed83b6c6666eb8b6b104c211ae7e52907350372.tar.gz scribus-7ed83b6c6666eb8b6b104c211ae7e52907350372.tar.xz scribus-7ed83b6c6666eb8b6b104c211ae7e52907350372.zip | |
Branch 1.3.5 tree to 1.4.x tree, goodbye 1.3.x
git-svn-id: svn://scribus.net/branches/Version14x/Scribus@17163 11d20701-8431-0410-a711-e3c959e3b870
Diffstat (limited to 'scribus/doc/en/importhints4.html')
| -rw-r--r-- | scribus/doc/en/importhints4.html | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/scribus/doc/en/importhints4.html b/scribus/doc/en/importhints4.html new file mode 100644 index 0000000..c14defa --- /dev/null +++ b/scribus/doc/en/importhints4.html @@ -0,0 +1,62 @@ +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> + <title>Notes on Importing HTML into Scribus</title> +</head> +<body> +<h2>Notes on Importing HTML into Scribus</h2> + +<p>Scribus has an HTML importer which can import clean, well formed HTML and retain much of the layout and and formatting, provided the formatting or styling is basic HTML <strong>in the HTML markup</strong>, not via css style sheets. CSS support will come in the future.</p> +<h4>So what kind of HTML is supported and how does it work ?</h4> +<p>Upon import, the importer will create paragraph styles which correspond to the html markup. Bold, Italics and monospace text and alignment are also supported. Below is a listing of the HTML markup supported - both upper and lower case tags. </p> +<ul> +<li>body, div, a - Text must be within the <body> tags.</li> +<li>p and br - Corresponding to paragraph and line breaks.</li> +<li>H1 to H4 - Correspond to Heading Sizes 1 to 4.</li> +<li>ol,ul,li - Corresponding to ordered or unordered lists.</li> +<li>pre and code - Corresponding to preformatted text and source code listings. These will be converted to text using the fixed pitch font Courier.</li> +<li>www. style web links are converted to text with blue coloring to highlight them in the same manner as most web browsers do in their default settings.</li> +<li>b, u, i, em, strong,sub.sup,del,u - Text formatting is converted to the corresponding font styles. Note, your default font should have all of these variants available to Scribus. </li> +</ul> +Hence the following section of html will display and create paragraph styles in Scribus as demonstrated below. +<pre> +<?xml version="1.0" encoding="utf-8"?> +<!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> +<title></title> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +</head> +<body> +<h1>H1 Text</h1> +<h2>H2 Text</h2> +<h3>H3 Text</h3> +<h4>H4 Text</h4> +<ol> +<li>Ordered List Item 1 </li> +<li>Ordered List Item 2 </li> + </ol> + <ul> +<li>Un-Ordered List Item 1 </li> + <li>Un-Ordered List Item 2 </li> + </ul> + <code>code listings</code> + <p><b>Bold Paragraph Style</b></p> + <p><i>Italic Paragraph Style</i></p> + <p align="center">Centered Text</p> +</body> +</html></pre> +<p>Below the imported styles from the file above. </p> +<table width="100%"><tr><td align="center"><img src="images/htmlstyle.png" alt="HTML Styles imported into Scribus" title="HTML Styles imported into Scribus " /></td></tr></table> +<p>Below is the imported text displayed on the canvas:</p> +<table width="100%"><tr><td align="center"><img src="images/htmlimport.png" alt="HTML imported into Scribus" title="HTML imported into Scribus " /></td></tr></table> +<p>Not all applications export HTML with high fidelity to the W3C specifications. You can use htmltidy to clean up and make conformant HTML text you need to import. See : <a href=" http://w3c.org"> http://w3c.org</a> +<hr /> +<p>See also:</p> +<ul> +<li><a href="WwStyles.html">Working with Styles</a></li> +</ul> +</p> +</body> +</html>
\ No newline at end of file |
