|
|||||||
![]() |
|
|
Thread Tools |
|
|
#1 | |
![]() Join Date: Jan 2007
Posts: 999
|
http://ryubahamut.googlepages.com/row_alternator.py
Figured this might be useful to people while HTMLizing something with a lot of tables, like http://www.smogon.com/dp/articles/breeding_guide_part3. It's a Python script that takes a file as input, identifies tables in it and row-alternating them, and then outputs the row-alternated file on stdout. I have tried it on a few table-intensive pages, and it has worked pretty fine. Quote:
|
|
|
|
|
|
|
#2 |
|
np: Biffy Clyro - Shock Shock
![]() ![]()
Join Date: Feb 2006
Posts: 4,679
Malta
|
I knew you'd write something like this. :) Excellent!
__________________
http://users.smogon.com/X-Act For all your Pokemon needs (and more!) including: the Defensive EVs applet, the Probabilities of Breeding IVs in Pokemon applet, and the Ratings of Pokemon Base Stats applet (now Version 2.0!). And also the IV to PID applet! |
|
|
|
|
|
#3 |
|
Keep your hands off my stack.
![]() ![]() ![]() ![]() ![]()
Join Date: Nov 2007
Posts: 2,813
|
The W3 XHTML Validator is a nice and easy tool that you can use to check the validity of your HTML, and it's been around for quite some time. All you have to do is enter your HTML to be checked, and it will report on whether there are any discrepancies or not. This can be something as simple as using & when you should have used & to display it, so it's really quite a handy tool for finding errors that you might overlook normally.
You can't just paste the HTML you're going to be using at Smogon, however. This validator works by checking an entire page, not just portions of HTML. Therefore, if the display elements of the page aren't set up correctly, your HTML won't validate even if it is correct. Smogon obviously handles this when you add your code to the site, but that isn't much good if you want to check before you get somebody to cache your entry for you. With that in mind, I've thrown together a makeshift template for you to paste your work into. HTML Code:
<!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" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <title>Article Test</title> <link rel="stylesheet" type="text/css" href="http://www.smogon.com/media/global.css" /> <link rel="stylesheet" type="text/css" href="http://www.smogon.com/media/page.css" /> </head> <body> <!-- YOUR HTML CODE GOES HERE --> </body> </html> Code:
[title] Blah Blah [head] <meta name="description" content="Blah blah blah" /> [page] Then it's just a matter of actually validating your document. You can either upload it directly or simply copy and paste your code directly. Note that if you validate by direct input, you'll receive a single warning even if the code is all correct which is to do with assumed character encoding. As long as the code actually passes in this case, you're fine since Smogon handles all of that anyway. ![]() If you're Site Staff, you can actually just paste your HTML code as normal (ie. without using my template) and validate your page directly, so that's worth keeping in mind too. Hopefully this will help some of you out - it's always good to be able to check your code instead of flying blind. Post any comments, questions or problems here please. :)
__________________
|
|
|
|
|
|
#4 |
|
maybe I just misunderstood
![]() ![]() ![]()
Join Date: Aug 2007
Posts: 3,695
|
Couple of things I have found handy:
BBCode to HTML converter Remember to make the BBtags visible on posts before copying it over by clicking the A/A button in the upper right of a post while quoting or editing. W3 "try it" thing Allows you to quickly see how most HTML with turn out (don't try to put whole documents into it, it only likes snippets).
__________________
For people who like storing things: The Box Reading and LC? LCF, LC Guide, LC Analyses Good channels: #littlecup, #C&C, #1v1, others And for SCMS editors: SCMS group |
|
|
|
![]() |
| Thread Tools | |
|
|