Skip to main content

HTML Slidy - a Web based alternative to PowerPoint

Popularity Report

Total Popularity Score: 0

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Rank

Groups (1)

  • webdesign

    Webdesign

    11 members,32 bookmarks

    The goal of the WDIG is inter-department sharing of web development knowledge, as well as building a network around the subject.

Related Lists

Bookmark History

Saved by 35 people (16 private), first by anonymouse user on 2006-03-02


Public Sticky notes

  • Missing or mismatched end tags are detected and corrected
       <h1>heading
       <h2>subheading</h3>
    

    is mapped to

       <h1>heading</h1>
       <h2>subheading</h2>
    
  • End tags in the wrong order are corrected:
       <p>here is a para <b>bold <i>bold italic</b> bold?</i> normal?
    

    is mapped to

       <p>here is a para <b>bold <i>bold italic</i> bold?</b> normal?
    
  • Fixes problems with heading emphasis
       <h1><i>italic heading</h1>
       <p>new paragraph
    

    In Netscape and Internet Explorer this causes everything following the heading to be in the heading font size, not the desired effect at all!

    Tidy maps the example to

       <h1><i>italic heading</i></h1>
       <p>new paragraph
  • Highlighted by fulvius