Home
Marcos Cáceres edited this page Feb 12, 2017
·
14 revisions
Pages 88
- Home
- Acknowledgments
- additionalCopyrightHolders
- addPatentNote
- alternateFormats
- appendix
- authors
- canonicalURI
- charterDisclosureURI
- Configuration (respecConfig)
- copyrightStart
- crEnd
- data cite
- data include
- data number
- data dfn for
- data include format
- data include replace
- data link for
- data oninclude
- data transform (Deprecated)
- Developers Guide
- diffTool
- dir
- doRDFa
- edDraftURI
- editors
- ednote
- errata
- example
- figure
- format
- githubAPI
- idl index
- implementationReportURI
- includePermalinks
- informative
- introductory
- issue summary
- issueBase
- lang
- lcEnd
- lint
- localBiblio
- logos
- maxTocLevel
- no link warnings
- nohighlight
- noLegacyStyle
- nolinks
- noRecTrack
- note
- noTOC
- otherLinks
- person
- Person objects
- postProcess
- practice
- practicedesc
- practicelab
- preProcess
- prevED
- previousDiffURI
- previousMaturity
- previousPublishDate
- previousURI
- prevRecShortname
- prevRecURI
- processVersion
- publishDate
- Referencing GitHub issues in your spec
- refNote
- remove
- respecIsReady
- section
- shortName
- specStatus
- subjectPrefix
- subtitle
- testSuiteURI
- title
- tocIntroductory
- User's Guide
- WebIDL Guide
- wg
- wgPatentURI
- wgPublicList
- wgURI
- Show 73 more pages…
User's Guide
WebIDL Guide
Configuring ReSpec
Developers Guide
Configuration options
- additionalCopyrightHolders
- addPatentNote
- alternateFormats
- authors
- canonicalURI
- charterDisclosureURI
- copyrightStart
- crEnd
- diffTool
- doRDFa
- edDraftURI
- editors
- errata
- format (markdown)
- implementationReportURI
- issueBase,
- githubAPI,
- includePermalinks
- lcEnd
- lint
- localBiblio
- logos
- maxTocLevel
- noLegacyStyle
- noRecTrack
- noTOC
- otherLinks
- postProcess
- preProcess
- prevED
- previousDiffURI
- previousMaturity
- previousPublishDate
- previousURI
- prevRecShortname
- prevRecURI
- processVersion
- publishDate
- refNote
- shortName
- specStatus
- subjectPrefix
- subtitle
- testSuiteURI
- tocIntroductory
- wg
- wgPatentURI
- wgPublicList
- wgURI
Special <section> IDs
HTML elements
WebIDL
HTML attributes
- data-cite
- data-include
- data-include-format
- data-include-replace
- data-number
- data-oninclude
- data-transform (Deprecated)
- dir
- lang
CSS Classes
- appendix
- ednote
- example
- highlight
- informative
- introductory
- nohighlight
- nolinks
- notoc
- note
- practice
- practicedesc
- practicelab
- remove
- no-link-warnings
Special properties
Clone this wiki locally
ReSpec is a tool that makes writing specifications easier. ReSpec handles things like styling, referential integrity, bibliographical data, and other mundane tasks.
User's guide
A detailed user's guide is available.
Getting up and running
All you need is a HTML Document and to set some configuration options. Each configuration option is documented in this Wiki.
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Replace me with a real title</title>
<script
src='https://www.w3.org/Tools/respec/respec-w3c-common'
class='remove'></script>
<script class='remove'>
var respecConfig = {
specStatus: "ED",
editors: [{
name: "Your Name",
url: "http://your-site.com",
}],
processVersion: 2015,
edDraftURI: "http://some.github.repo",
shortName: "dahut"
};
</script>
</head>
<body>
<section id='abstract'>
<p>
This is required.
</p>
</section>
<section id='sotd'>
<p>
This is required.
</p>
</section>
<section data-dfn-for="Foo">
<h2><dfn>Foo</dfn> interface</h2>
<pre class="idl">
interface Foo {
attribute Bar bar;
void doTheFoo();
};
</pre>
<p>The <a>Foo</a> interface is nice. Lets you do stuff.</p>
<p>The <dfn>bar</dfn> attribute, returns 🍺.</p>
<p>The <dfn>doTheFoo()</dfn> method, returns nothing.</p>
</section>
</body>
</html>Getting Support
The official support channel for ReSpec is [email protected]. The mailing list archives are available. You can subscribe by sending email to [email protected] with "subscribe" as the subject line.