Pastebin launched a little side project called HostCabi.net, check it out ;-)Don't like ads? PRO users don't see any ads ;-)
Guest

schweppy html

By: waterapple on Jan 27th, 2014  |  syntax: HTML  |  size: 0.94 KB  |  hits: 24  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <html>
  2.     <head>
  3.         <title>Python Tools</title>
  4.         <meta charset="UTF-8">
  5.         <meta name="viewport" content="width=device-width">
  6.         <script type="text/javascript" src="pythonTools.js"></script>
  7.     </head>
  8.     <body>
  9.         <div>Escaper tool for Python Strings</div>
  10.         <input value=" Escape string for Python " onclick="escapePythonString();" type="button">
  11.         <textarea id="pythonStringEscapeTextBox" style="width: 99%; height: 100px;" wrap="off">Enter text here</textarea>
  12.         <br>
  13.         <br>
  14.         <div>Escaper tool for Python Regular Expressions</div>
  15.         <input value=" Escape string for Regex " onclick="escapePythonRegexString();" type="button">
  16.         <br>
  17.         <input type="checkbox" id="regexWhiteSpace" checked/>Convert whitespace to "\s+?".
  18.         <textarea id="pythonRegexEscapeTextBox" style="width: 99%; height: 100px;" wrap="off">Enter text here</textarea>
  19.     </body>
  20. </html>