-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Allow non-HTML-encoded entities #404
Comments
Spec.html should be utf-8 encoded and html entities should only be used when needed. Eg. a < b should be fine, although I could be wrong about that. I plan on doing this work along with the big Ecmarkdown 3.0 conversion post-snapshot. |
awesome - we might want to set up a travis task to specifically lint for all the things we don't want included in spec.html - like html entities, or internal slots with non-uppercase code points, etc? |
Sure, I would love for npm test to actually do something useful ;) |
Trying to follow up on this thread, would this issue require tests and/or a feature in ecmarkdown? |
|
Sure, but ecmarkup input isn’t valid html already :-) |
Right. I was pointing out that the case for which ecmarkup doesn’t have to do anything special is |
Per editor call today, now that we have an auto-formatter, we'll have the formatter translate from HTML entity style (which some people prefer to write) to actual code points (which most people prefer to read). So the editorial convention will be that spec.html has actual code points (except for |
Fixed by #2901. |
Things like
<
would be much nicer to work with as<
inspec.html
- is this something ecmarkup/ecmarkdown could handle for us?The text was updated successfully, but these errors were encountered: