diff options
author | Stefan Ritter <xeno@thehappy.de> | 2011-06-20 19:16:32 +0200 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2011-06-20 19:16:32 +0200 |
commit | 04675db20ab671db75c81fa23df563555b87354b (patch) | |
tree | 3467707cb6f4db7d09956df40aae176550d6f54f | |
parent | bc61c55799c39b226801cc544b71e59659c6786d (diff) |
Some tempfile stuff, switch to html5
-rw-r--r-- | vim/header_html | 7 | ||||
-rw-r--r-- | vim/header_html_xhtml | 12 |
2 files changed, 15 insertions, 4 deletions
diff --git a/vim/header_html b/vim/header_html index 6f2e831..90612bd 100644 --- a/vim/header_html +++ b/vim/header_html @@ -1,10 +1,9 @@ :insert -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" -"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> +<!DOCTYPE html>" +<html lang="en"> <head> <title></title> - <meta http-equiv="content-type" content="text/html; charset=utf-8" /> + <meta charset=utf-8 />> <!-- <link rel="stylesheet" type="text/css" href="..." /> --> </head> <body> diff --git a/vim/header_html_xhtml b/vim/header_html_xhtml new file mode 100644 index 0000000..6f2e831 --- /dev/null +++ b/vim/header_html_xhtml @@ -0,0 +1,12 @@ +:insert +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" +"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> + <head> + <title></title> + <meta http-equiv="content-type" content="text/html; charset=utf-8" /> + <!-- <link rel="stylesheet" type="text/css" href="..." /> --> + </head> + <body> + </body> +</html> |