-
Notifications
You must be signed in to change notification settings - Fork 10
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
Filling out the table contents in the document tree. #5
Conversation
great, thank you! I know there’s still a lot to do here, so thank you for moving it along! |
After taking a good look at the attributes of the table elements in But though the spec doesn't require the attributes and elements I listed above, docutils does use the Should I keep everything that's part of the Docutils doctype, or get rid of anything not needed? |
Up until now I followed everything the DTD does, as I’d like to (de)serialize the doctrees to docutils XML. On the other hand, if some attributes are flat out unnecessary, we could just ignore them when deserializing. Do what you think is best! |
In the end I've implemented every attribute, since if you're contemplating serializing into XML as a possible feature, parsing a docutils XML isn't that far-fetched. I got a type error about the |
Sounds ideal! Thank you. |
|
Damn, that’s a design issue for sure. I think your comment there is sufficient. Thank you! |
I'm filling out the table content model according to the declarations in
soexblx.dtd
. So far I've added the elements, next I'll be adding the attributes.