Difference between revisions of "How to modify a page"
m (Reverted edits by AcelmOnpas (Talk); changed back to last version by Mgueury) |
|||
(21 intermediate revisions by 7 users not shown) | |||
Line 1: | Line 1: | ||
== How to modify a page == | == How to modify a page == | ||
− | + | This site contains general information about HTML, but mostly it contains help for the following: | |
− | * | + | * [[HTML_Tidy|HTML_Tidy]] errors and warnings, |
− | * | + | * [[Access|Accessibility warnings]], |
− | * | + | * [[Opensp|OpenSP]] errors and warnings. |
− | Currently a lot of | + | Currently a lot of '''OpenSP''' and '''Accessibility''' pages have missing samples or unclear descriptions. You are welcome to contribute and improve these pages, or you may add a new page for topics that interest you about HTML. To do this, click on the '''EDIT''' tab on the top of each page. |
− | For | + | === Wiki Page Structure === |
− | # Title: There | + | When editing a page, please follow these guidelines. For the following errors, the structure of the page is the same: |
− | # Cause: | + | # Title: There should be an error title on the top of the page |
− | # Example: Some samples | + | # Cause: A cause that explains the reason for the error |
− | # Solution: A short description of | + | # Example: Some error samples. Often a bad sample and a good one that show how to correct the error will suffice |
− | # References: URL References to W3C specifications or other interesting links about the topic. | + | # Solution: A short description of the fix for this error |
+ | # References: URL References to W3C specifications or other interesting links about the topic. | ||
− | The pages | + | Here is an example structure using the Wiki markup: |
+ | |||
+ | <good><pre>== Title == | ||
+ | === Cause: === | ||
+ | Describe the cause of the problem here. | ||
+ | |||
+ | === Example: === | ||
+ | <bad>A sample showing incorrect syntax</bad> | ||
+ | <good>A sample showing corrected syntax</good> | ||
+ | |||
+ | === Solution: === | ||
+ | Describe the solution (or solutions) here. | ||
+ | |||
+ | === References: === | ||
+ | * Describe the link: http://link.goes.here/</pre></good> | ||
+ | |||
+ | === Wiki Markup === | ||
+ | The pages use a standard Wiki syntax. For a quick help, look at: | ||
* Wikipedia Cheatsheet: http://meta.wikimedia.org/wiki/Cheatsheet | * Wikipedia Cheatsheet: http://meta.wikimedia.org/wiki/Cheatsheet | ||
* Wikipedia Help: http://en.wikipedia.org/wiki/Help:Contents | * Wikipedia Help: http://en.wikipedia.org/wiki/Help:Contents | ||
− | + | * MediaWiki Full help: http://meta.wikimedia.org/wiki/Help:Wikitext | |
+ | In addition to the above syntax links, and 2 tags: <good>, <bad> for showing the good and bad samples. | ||
+ | |||
+ | You can of course ask questions in the '''DISCUSSION''' Tab of the error if the page is not clear. | ||
+ | |||
+ | === Test === | ||
− | + | To test on a empty MediaWiki, please use: | |
+ | * http://test.wikipedia.org/ | ||
+ | * [[sandbox]] | ||
− | Finally, here is the example of | + | === Example === |
+ | Finally, here is the example of an error [[Sp_28|OpenSP error]]. The error is reproduced below, for easy reference: | ||
Line 28: | Line 54: | ||
== OpenSP: unterminated comment: found end of entity inside comment == | == OpenSP: unterminated comment: found end of entity inside comment == | ||
=== Cause: === | === Cause: === | ||
− | Check that you are using a proper syntax for | + | Check that you are using a proper syntax for your comments, e.g: <!-- comment here -->. |
This error may appear if you forget the last "--" to close one comment, therefore including the rest | This error may appear if you forget the last "--" to close one comment, therefore including the rest | ||
of the content in your comment. | of the content in your comment. |
Latest revision as of 22:13, 25 May 2009
Contents
How to modify a page
This site contains general information about HTML, but mostly it contains help for the following:
- HTML_Tidy errors and warnings,
- Accessibility warnings,
- OpenSP errors and warnings.
Currently a lot of OpenSP and Accessibility pages have missing samples or unclear descriptions. You are welcome to contribute and improve these pages, or you may add a new page for topics that interest you about HTML. To do this, click on the EDIT tab on the top of each page.
Wiki Page Structure
When editing a page, please follow these guidelines. For the following errors, the structure of the page is the same:
- Title: There should be an error title on the top of the page
- Cause: A cause that explains the reason for the error
- Example: Some error samples. Often a bad sample and a good one that show how to correct the error will suffice
- Solution: A short description of the fix for this error
- References: URL References to W3C specifications or other interesting links about the topic.
Here is an example structure using the Wiki markup:
![]() | == Title == === Cause: === Describe the cause of the problem here. === Example: === <bad>A sample showing incorrect syntax</bad> <good>A sample showing corrected syntax</good> === Solution: === Describe the solution (or solutions) here. === References: === * Describe the link: http://link.goes.here/ |
Wiki Markup
The pages use a standard Wiki syntax. For a quick help, look at:
- Wikipedia Cheatsheet: http://meta.wikimedia.org/wiki/Cheatsheet
- Wikipedia Help: http://en.wikipedia.org/wiki/Help:Contents
- MediaWiki Full help: http://meta.wikimedia.org/wiki/Help:Wikitext
In addition to the above syntax links, and 2 tags: <good>, <bad> for showing the good and bad samples.
You can of course ask questions in the DISCUSSION Tab of the error if the page is not clear.
Test
To test on a empty MediaWiki, please use:
Example
Finally, here is the example of an error OpenSP error. The error is reproduced below, for easy reference:
OpenSP: unterminated comment: found end of entity inside comment
Cause:
Check that you are using a proper syntax for your comments, e.g: <!-- comment here -->. This error may appear if you forget the last "--" to close one comment, therefore including the rest of the content in your comment.
Example:
![]() | <!-- comment here > |
![]() | <!-- comment here --> |
Solution:
Fix the broken comment.
References:
- W3 validator: http://validator.w3.org/