>From what I've seen in the code, there is no actual way without modifying
the code.
Try to apply the attached patch on asciidoc.py. If you can't apply it, you
can manually add the line:
message.warning('skipped attribute: %s' % skipped.group(0))
at this place (around line 1067):
# Drop line if it contains unsubstituted {name} references.
skipped = re.search(r'(?su)\{[^\\\W][-\w]*?\}(?!\\)', line)
if skipped:
message.warning('skipped attribute: %s' % skipped.group(0))
continue;
# Expand system attributes (eval has precedence).
reos = [
P.S. don't take into account the warnings concerning {zzzzz} attributes,
they are generated by the internal code.
Regards,
Lionel
--
You received this message because you are subscribed to the Google Groups
"asciidoc" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/asciidoc?hl=en.