Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add parser encoding to reference documentation #1374

Merged
merged 1 commit into from
Jul 29, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/references/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ The following fields are supported:
also used as source location for the transformer. This can be either a
relative or absolute folder.
Relative folders are relative to the location of the configuration file.
- *encoding*, optional element which defines the file encoding to use.
- *markers*, contains a listing of prefixes used in single line comments to
mark a segment of code using a single word (by default FIXME and TODO
are supported).
Expand All @@ -167,6 +168,7 @@ The following fields are supported:

<parser>
<target>output</target>
<encoding>utf8</encoding>
<markers>
<item>TODO</item>
<item>FIXME</item>
Expand Down Expand Up @@ -348,6 +350,7 @@ Appendix B: complete configuration example
<title>My project</title>
<parser>
<target>output</target>
<encoding>utf8</encoding>
<markers>
<item>TODO</item>
<item>FIXME</item>
Expand Down