Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 1.26 KB

CONTRIBUTING.md

File metadata and controls

36 lines (25 loc) · 1.26 KB

Portable Network Graphics (PNG) Working Group

Contributions to this repository are intended to become part of Recommendation-track documents governed by the W3C Patent Policy and Software and Document License. To make substantive contributions to specifications, you must either participate in the relevant W3C Working Group or make a non-member patent licensing commitment.

Multiple contributors

If you are not the sole contributor to a contribution (pull request), please identify all contributors in the pull request comment.

To add a contributor (other than yourself, that's automatic), mark them one per line as follows:

+@github_username

If you added a contributor by mistake, you can remove them in a comment with:

-@github_username

If you are making a pull request on behalf of someone else but you had no part in designing the feature, you can remove yourself with the above syntax.

HTML Tidy

This repository uses HTML tidy for consistent formatting of HTML source. To tidy a file called index.html one could do:

cp index.html tmp.html
tidy -config tidy.cfg -o index.html tmp.html
rm tmp.html