Change the Blank HTML file
When I choose the menu item "'Add Blank HTML File" Sigil adds a new HTML with this content:
<?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 xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<p>*</p>
</body>
</html>
I would like to have it add a link to my default style sheet too in the head-section:
<link href="main.css" type="text/css" rel="stylesheet"/>
Is that possible?
|