summaryrefslogtreecommitdiff
path: root/stagit.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2016-11-09 18:28:46 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2016-11-09 18:28:46 +0100
commit92cee02f1217f19a19d872d857f6e617ed3e0eec (patch)
tree413c9c52a8a4a1b5436acde97e04d4d709283390 /stagit.c
parent9e96062b620088a42c7b345e07cc8c12e2b59ed2 (diff)
also remove language and text direction attribute from <html>
Diffstat (limited to 'stagit.c')
-rw-r--r--stagit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stagit.c b/stagit.c
index 3b8913f..b2b7268 100644
--- a/stagit.c
+++ b/stagit.c
@@ -329,7 +329,7 @@ void
writeheader(FILE *fp, const char *title)
{
fputs("<!DOCTYPE html>\n"
- "<html dir=\"ltr\" lang=\"en\">\n<head>\n"
+ "<html>\n<head>\n"
"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n"
"<title>", fp);
xmlencode(fp, title, strlen(title));