First CSS style added for a HTML table dump format (Issue #254)

This commit is contained in:
Miroslav Stampar
2012-11-28 12:46:43 +01:00
parent b6ea337937
commit 753d0f18bf
2 changed files with 21 additions and 0 deletions

View File

@@ -499,3 +499,18 @@ SUHOSHIN_MAX_VALUE_LENGTH = 512
# Regular expression used for extracting form tags
FORM_SEARCH_REGEX = r"(?si)<form(?!.+<form).+?</form>"
# CSS style used in HTML dump format
HTML_DUMP_CSS_STYLE = """<style>
table{
margin:10;
background-color:#ffffff;
font-family:verdana;
font-size:12px;
align:center;
}
td{
font-family:verdana;
font-size:10px;
}
</style>"""