View Single Post
Old 02-04-2017, 11:00 AM   #11
Mark Nord
2B || !2B
Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.Mark Nord ought to be getting tired of karma fortunes by now.
 
Posts: 854
Karma: 327896
Join Date: Feb 2010
Location: Austria
Device: Sony PRS505/650/T1/tolino vision 5
Hi,
your code isn't valid html. (table is not allowed in p, as both are block elements.)

But I had a very interesting finding.
Spoiler:
First I nested your code in standard Sigil XML "wrapper"
Code:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html>
<head></head>

<body> 
.....
</body>
</html>
Imported ok.

Then I tried:
Code:
<html>
<head></head>
<body>
....
</body>
</html>
Didn't load

Next I changed your outer p-tags to div,
Code:
<html">
<head>

</head>
<div class=podpis style='text-indent:21.3pt'>
....
</div>
</body>
</html>
This opens fine,

also just the code in DIV's, without any HTML, HEAD, BODY a.s.o will open,
but if the html starts with a
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
line, it will NOT open.


I'am on Sigil 0.9.1 on Windows
Attached Files
File Type: xml Sigil xml.xml (529 Bytes, 198 views)
File Type: xml html p.xml (378 Bytes, 222 views)
File Type: xml html div.xml (415 Bytes, 218 views)
File Type: xml div.xml (333 Bytes, 543 views)
File Type: xml doctype div.xml (538 Bytes, 206 views)

Last edited by Mark Nord; 02-04-2017 at 03:02 PM. Reason: Set Spoiler, as issue is resolved
Mark Nord is offline   Reply With Quote