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

feat: Permit non-ASCII within <t> without the use of <u> #895

Merged
merged 7 commits into from
Jan 18, 2023

Conversation

cabo
Copy link
Contributor

@cabo cabo commented Sep 15, 2022

Permit non-ASCII within <t> without the use of <u>

See RSAB decision and RSWG discussion.

On Sep 19, 2022 the RPC raised the following policy question with the RSAB:

“The authors of RFC 9290 [1] would like to include a Hebrew string within <t> [2] without using <u> [3], which is currently not permitted by xml2rfc. This has been the case since the transition to v3 XML. The "XML and Style Guide Change Management Team” (CMT) previously discussed the possibility of allowing non-ASCII characters everywhere; I believe both CMT and RPAT are generally supportive but believe caution is needed because internationalization is complex. Limited use of non-ASCII characters has been de facto policy since the transition to v3 XML (3 years ago). In our current discussion, some believe that RFC 7997 [4] permits non-ASCII within <t> without the use of <u> so all that’s needed is a ticket to request that xml2rfc be updated, while some consider this a larger change that may require more review and perhaps RSWG action.

[1] https://www.rfc-editor.org/authors/rfc9290.html#appendix-A.3 <https://www.rfc-editor.org/authors/rfc9290.html#appendix-A.3>
Note that the string is currently included as <artwork>.
[2] https://authors.ietf.org/rfcxml-vocabulary#t <https://authors.ietf.org/rfcxml-vocabulary#t>
[3] https://authors.ietf.org/rfcxml-vocabulary#u <https://authors.ietf.org/rfcxml-vocabulary#u>
[4] https://www.rfc-editor.org/rfc/rfc7997.txt <https://www.rfc-editor.org/rfc/rfc7997.txt>

Later on the RPC provided the following update:

“Note that the authors decided to publish RFC 9290 with a workaround because it was unclear how long their document would be delayed. While this issue no longer applies to a document pending action, we request a decision as we expect similar cases to come up in the near future. There are recent examples where this change would enhance the document, e.g., for μs, ≤, and ±”

After discussion, the RSAB concluded that section 3.1 of RFC 7997 describes the current policy that covers the case in question. That section permits non-ASCII within <t> without the use of <u> “[w]here the use of non-ASCII characters is purely part of an example and not otherwise required for correct protocol operation” [RFC7997]. The current practice by the RPC is manifested in tooling limitations that are more strict than the policy in RFC7997 and only allow the use of <u> for non-ASCII chars within <t>. Therefore, to align xml2rfc with RFC 7997, a proposed fix has been suggested in GitHub (#895 <https://github.com/ietf-tools/xml2rfc/pull/895>). In addition, the RPC has updated the “Web Portion of the Style Guide” to provide guidance about where non-ASCII characters may be used without <u> (see https://www.rfc-editor.org/styleguide/part2/#nonascii <https://www.rfc-editor.org/styleguide/part2/#nonascii>).

Further, the RSAB would like to note to the RSWG that RFC7991 and RFC7997 provide only limited guidance about the exact use of unicode characters. RFC7997 leaves it to the RPC to decide where <u> is required as part of the spec that is essential for correct operation. We believe this process is appropriate with the new RFC editor model; inline with section 4.4 of RFC9280 we recommended that the RPC consults with the responsible area director (in case of IETF stream documents) or the stream representatives, in those cases where the correct use is not clear. Also, if a further question on interpretation of policy appears, then the RPC is free to bring that back to RSAB. In addition, the RPC raised concerns about this change in the operational practice in order to align with RFC7997, e.g. due to complexities with internationalization, and therefore identified a need for potentially more implementation guidance. We recommended the RPC to raise these concerns with the RSWG, and if the community sees a need for additional policy and guidance, new policy should to be discussed and developed in the RSWG.

Original text on PR:
(See discussion in auth48archive and others.)

@rjsparks
Copy link
Member

So far this will make it so that non-ascii utf-8 can appear in t without any warning being emitted. The warning/error changes would downshift the error to a warning for other places xml2rc was being strict about utf-8 for.

I'm not sure that's the intended result of the PR?

Unless we have some other tool to let the rfc-editor know they've got utf-8 to look at for reasonableness in the chain, having it pass it quietly seems a step too far.

@cabo
Copy link
Contributor Author

cabo commented Sep 15, 2022

The change only kicks in when the RFC has a number. Up to then, xml2rfc works like before.

@rjsparks
Copy link
Member

and sometimes big swaths of text get added after the RFC has a number.

@cabo
Copy link
Contributor Author

cabo commented Sep 15, 2022

Yes, and having a tool that gives the RFC editor a histogram of character usage is probably quite useful. SMOP.

@cabo
Copy link
Contributor Author

cabo commented Sep 15, 2022

require 'unicode/name'
hist = Hash.new(0)
ARGF.read.each_char do |c|
  hist[c] += 1 unless c.ord < 128
end
cl = "*** Latin"
hist.keys.sort.partition {|c| c =~ /\A\p{Latin}\z/}.each do |l|
  puts cl
  l.each  do |c|
    puts "#{c}: #{"%4d" % hist[c]} #{Unicode::Name.correct(c)}"
  end
  cl = "*** Non-Latin"
end
$ unicode-histo rfc9277.xml
*** Latin
ß:    1 LATIN SMALL LETTER SHARP S
ä:    2 LATIN SMALL LETTER A WITH DIAERESIS
ö:    2 LATIN SMALL LETTER O WITH DIAERESIS
*** Non-Latin
 :   52 NO-BREAK SPACE
≤:    2 LESS-THAN OR EQUAL TO

@sginoza
Copy link

sginoza commented Sep 15, 2022

I need to think about this a bit more but 2 things come to mind:
a) slightly concerned that this isn't getting wider review in that this has been normal handling since the transition to v3 (so almost 3 years)
b) if we're making the switch to allow non-ascii everywhere, flagging if and where these characters appear would be helpful. I want to talk to the team about this to see what is helpful for all, but my first thought is it would be helpful to have some of the surrounding text or line numbers so we know where the characters appear (maybe some instances are ok and some aren't). We have a script we use now, but having something built into xml2rfc might be nice to have one less separate check to run.

xml2rfc/writers/preptool.py Outdated Show resolved Hide resolved
xml2rfc/writers/preptool.py Outdated Show resolved Hide resolved
@kesara
Copy link
Member

kesara commented Sep 27, 2022

@rjsparks, @cabo: I have committed a new change to allow bare Unicode in the <t> element.
This also introduces new flag --warn-bare-unicode when set, xml2rfc warns about bare Unicode in the <t> element.
By default, this is set to False.

Have a look at the following test results (in a different branch, I haven't merged the results to this PR yet): kesara@3998d8e#diff-c2d2944d758bb3948e7924d76edf0e05292cda738d52c51636723fbbd444cfa9

Are those test results acceptable?

xml2rfc/writers/preptool.py Outdated Show resolved Hide resolved
xml2rfc/run.py Show resolved Hide resolved
@cabo
Copy link
Contributor Author

cabo commented Oct 19, 2022

Here is another example why this needs to be fixed:

ietf-wg-jsonpath/draft-ietf-jsonpath-base#274

@@ -34,6 +34,7 @@
'street',
'title',
'u',
't',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add, both here and below: dd, dt, li, blockquote, and any other block-level elements I missed. Then add, both here and below, the "inline" elements: cref (?), em, eref (?), iref (?), relref, strong, sub, sup, tt, and xref. (I didn't think much about the cross reference stuff, but I think they can contain text.)

I have immediate use for many of these. I can wrap in <t> for some of the block-level elements, but not the inline-level ones.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that with a list this long, you might consider how the latter list (bare_unicode_tags_with_notice) can be merged into the former (unicode_content_tags).

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree with the goal of the request. But I don't think we can do that without re-engaging the RSAB for a revised interpretation, or get a doc from RSWG through the RSAB that is explicit.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunately, I have to agree with @rjsparks here. RFC 7997 allows non-ASCII in examples, but not e.g. in Mathematical formulæ or other cases in general text. Of course I agree with @martinthomson that it would be highly desirable to use non-ASCII for these cases, but I think that requires a change in policy.

@reschke
Copy link
Contributor

reschke commented Dec 21, 2022

The change only kicks in when the RFC has a number. Up to then, xml2rfc works like before.

That sounds counter-intuitive to me. If it's an error until AUTH48, how will it be used by draft authors?

@cabo
Copy link
Contributor Author

cabo commented Dec 21, 2022

The change only kicks in when the RFC has a number. Up to then, xml2rfc works like before.

That sounds counter-intuitive to me. If it's an error until AUTH48, how will it be used by draft authors?

My original idea was to minimize the appearance of a change: use the workaround until RFC editing stage, and use the RFC editor's authority to decide what actually should be done.
However, that approach is no longer part of the proposal here.

@kesara kesara changed the title Turn the beyond-ascii check into a warning for RFC mode feat: Permit non-ASCII within <t> without the use of <u> Dec 21, 2022
@duerst
Copy link

duerst commented Dec 22, 2022

@cabo wrote:

$ unicode-histo rfc9277.xml
*** Latin
ß:    1 LATIN SMALL LETTER SHARP S
ä:    2 LATIN SMALL LETTER A WITH DIAERESIS
ö:    2 LATIN SMALL LETTER O WITH DIAERESIS
*** Non-Latin
 :   52 NO-BREAK SPACE
≤:    2 LESS-THAN OR EQUAL TO

I think separating Latin and non-Latin is a good first step, but for the RPC, some other statistics may also be helpful:

  • Counts per script (e.g. 4 HEBREW), not necessarily per character.
  • Instances of non-normalized or confusable characters (implementation of this might take some effort).
  • Instances of spaces (except for U+0020, the ASCII SPACE), marks,...

@cabo
Copy link
Contributor Author

cabo commented Dec 22, 2022 via email

@rjsparks
Copy link
Member

I’m repeating myself here: This fixes a bug in xml2rfc.

I don't disagree with you, but it's clear that the nascent RSWG/RSAB engine feels it has a role. I misremembered the status of this PR during the RSAB meeting at 116 (claiming it was already merged), and there were several people who were very upset about it.

So, yes, where Martin points is the right place to go. But I think trying to go there without nods from that new engine will make landing it take longer.

cabo and others added 7 commits January 18, 2023 13:25
This change allows bare Unicode in the t element.
This also introduces new flag `--warn-bare-unicode` when set, `xml2rfc` warns
about bare Unicode in the `<t>` element.
By default, this is set to False.
@kesara kesara merged commit ad2e035 into ietf-tools:main Jan 18, 2023
netbsd-srcmastr pushed a commit to NetBSD/pkgsrc that referenced this pull request Apr 1, 2023
Note: I gave up trying to make the tests run -- too many dependencies
before I ran out of time to waste on this.  But at least xml2rfc
itself seems to work.

Note: I gave up trying to update pycountry to 22.3.5 as listed in the
xml2rfc requirements.txt, because the pycountry 22.3.5 tests failed;
instead I patched xml2rfc to accept the version in pkgsrc for now.

Since xml2rfc had been rendered completely nonfunctional by updates to
its dependencies, I believe this is a better state than it was in even
if the tests can't be run.

Changes:

- [`dbdda51`](ietf-tools/xml2rfc@dbdda51) - Lighter styling on internal iref links *(PR [#963](ietf-tools/xml2rfc#963) by [@martinthomson](https://github.com/martinthomson))*
- [`ff1c061`](ietf-tools/xml2rfc@ff1c061) - Add support for Noto Math font *(PR [#971](ietf-tools/xml2rfc#971) by [@kesara](https://github.com/kesara))*

- [`636dd08`](ietf-tools/xml2rfc@636dd08) - update CHANGELOG.md + py file versions for v3.16.0 [skip ci] *(commit by [@kesara](https://github.com/kesara))*

- [`7cae8ad`](ietf-tools/xml2rfc@7cae8ad) - Remove mt.css and mt.js *(PR [#976](ietf-tools/xml2rfc#976) by [@martinthomson](https://github.com/martinthomson))*

- [`ad2e035`](ietf-tools/xml2rfc@ad2e035) - Permit non-ASCII within <t> without the use of <u> *(PR [#895](ietf-tools/xml2rfc#895) by [@cabo](https://github.com/cabo))*
- [`6b9aede`](ietf-tools/xml2rfc@6b9aede) - Add editorial stream *(PR [#958](ietf-tools/xml2rfc#958) by [@kesara](https://github.com/kesara))*
  - ↘️ *addresses issue [#896](undefined) opened by [@alicerusso](https://github.com/alicerusso)*

- [`5b687b1`](ietf-tools/xml2rfc@5b687b1) - Add 'auto' class for (most) parenthesized xref links *(PR [#948](ietf-tools/xml2rfc#948) by [@martinthomson](https://github.com/martinthomson))*
- [`388d4b9`](ietf-tools/xml2rfc@388d4b9) - Update to pypdf>=3.2.1 on base docker file *(PR [#954](ietf-tools/xml2rfc#954) by [@kesara](https://github.com/kesara))*

- [`6c9be77`](ietf-tools/xml2rfc@6c9be77) - Expand a problematic reference *(PR [#959](ietf-tools/xml2rfc#959) by [@kesara](https://github.com/kesara))*

- [`b811bfd`](ietf-tools/xml2rfc@b811bfd) - update CHANGELOG.md + py file versions for v3.15.3 [skip ci] *(commit by [@kesara](https://github.com/kesara))*

- [`5bbf3f7`](ietf-tools/xml2rfc@5bbf3f7) - **deps**: Move from PyPDF2 to pypdf>=3.2.1 *(PR [#953](ietf-tools/xml2rfc#953) by [@kesara](https://github.com/kesara))*

- [`1381bb8`](ietf-tools/xml2rfc@1381bb8) - Move sourcecode classes *(PR [#839](ietf-tools/xml2rfc#839) by [@martinthomson](https://github.com/martinthomson))*
- [`592ab81`](ietf-tools/xml2rfc@592ab81) - Only overwrite font-family when producing PDFs *(PR [#937](ietf-tools/xml2rfc#937) by [@martinthomson](https://github.com/martinthomson))*
- [`a3adb84`](ietf-tools/xml2rfc@a3adb84) - Fix margin issue with dl after p inside a li  *(PR [#941](ietf-tools/xml2rfc#941) by [@kesara](https://github.com/kesara))*

- [`9308e40`](ietf-tools/xml2rfc@9308e40) - Update walkpdf to fix PyPDF deprecation warnings *(PR [#934](ietf-tools/xml2rfc#934) by [@kesara](https://github.com/kesara))*

- [`0d3958c`](ietf-tools/xml2rfc@0d3958c) - Include OpenPGP certificates for signing the project in each release *(PR [#931](ietf-tools/xml2rfc#931) by [@dkg](https://github.com/dkg))*
- [`b451ded`](ietf-tools/xml2rfc@b451ded) - Add support for Python 3.11 *(PR [#942](ietf-tools/xml2rfc#942) by [@kesara](https://github.com/kesara))*
- [`9ff2476`](ietf-tools/xml2rfc@9ff2476) - Include all changes in Changelog *(PR [#944](ietf-tools/xml2rfc#944) by [@kesara](https://github.com/kesara))*

- [`d86b1f2`](ietf-tools/xml2rfc@d86b1f2) - update CHANGELOG.md + py file versions for v3.15.2 [skip ci] *(commit by [@kesara](https://github.com/kesara))*

- [`af9d83e`](ietf-tools/xml2rfc@af9d83e) - Skip Weasyprint 57.0 in tests *(PR [#932](ietf-tools/xml2rfc#932) by [@kesara](https://github.com/kesara))*

- [`908365f`](ietf-tools/xml2rfc@908365f) - Use wcwidth to determine the monospace textual length of a string *(PR [#914](ietf-tools/xml2rfc#914) by [@Flowdalic](https://github.com/Flowdalic))*
- [`0b42319`](ietf-tools/xml2rfc@0b42319) - Drop dependency on kitchen *(PR [#913](ietf-tools/xml2rfc#913) by [@Flowdalic](https://github.com/Flowdalic))*
- [`1a910d9`](ietf-tools/xml2rfc@1a910d9) - Expand table columns in text output  *(PR [#919](ietf-tools/xml2rfc#919) by [@kesara](https://github.com/kesara))*
- [`4f9e700`](ietf-tools/xml2rfc@4f9e700) - Add Noto Sans Symbols 2 font to PDF template *(PR [#926](ietf-tools/xml2rfc#926) by [@kesara](https://github.com/kesara))*

- [`18b34d8`](ietf-tools/xml2rfc@18b34d8) - Fix PDF tests *(PR [#920](ietf-tools/xml2rfc#920) by [@kesara](https://github.com/kesara))*

- [`7337517`](ietf-tools/xml2rfc@7337517) - Correct spelling mistakes *(PR [#917](ietf-tools/xml2rfc#917) by [@jsoref](https://github.com/jsoref))*

- [`08605de`](ietf-tools/xml2rfc@08605de) - Improve PDF generation debug logs *(PR [#907](ietf-tools/xml2rfc#907) by [@kesara](https://github.com/kesara))*
- [`12a960e`](ietf-tools/xml2rfc@12a960e) - Use specified font families on SVG *(PR [#910](ietf-tools/xml2rfc#910) by [@kesara](https://github.com/kesara))*
- [`70de803`](ietf-tools/xml2rfc@70de803) - Use noto fonts for non-latin unicode monospaced characters *(PR [#909](ietf-tools/xml2rfc#909) by [@kesara](https://github.com/kesara))*
- [`dd2b0fe`](ietf-tools/xml2rfc@dd2b0fe) - Add bottom margin to .artwork > pre *(PR [#912](ietf-tools/xml2rfc#912) by [@kesara](https://github.com/kesara))*
- [`58706b8`](ietf-tools/xml2rfc@58706b8) - Remove redundant code labels from CSS *(PR [#916](ietf-tools/xml2rfc#916) by [@kesara](https://github.com/kesara))*

- [`055d64d`](ietf-tools/xml2rfc@055d64d) - Add xml2rfc class to HTML body element *(PR [#847](ietf-tools/xml2rfc#847) by [@martinthomson](https://github.com/martinthomson))*
- [`7fec225`](ietf-tools/xml2rfc@7fec225) - Add classes to xref *(PR [#867](ietf-tools/xml2rfc#867) by [@martinthomson](https://github.com/martinthomson))*

- [`cc6b083`](ietf-tools/xml2rfc@cc6b083) - Fix table colspan issue in text format  *(PR [#886](ietf-tools/xml2rfc#886) by [@kesara](https://github.com/kesara))*
- [`2475447`](ietf-tools/xml2rfc@2475447) - Include the published date when ipr is none *(PR [#897](ietf-tools/xml2rfc#897) by [@kesara](https://github.com/kesara))*

- [`20cdb44`](ietf-tools/xml2rfc@20cdb44) - Fix odd page break inside rows in PDF output *(PR [#879](ietf-tools/xml2rfc#879) by [@kesara](https://github.com/kesara))*
- [`2c9dfaf`](ietf-tools/xml2rfc@2c9dfaf) - Return orgnization for orgnization only contacts *(PR [#837](ietf-tools/xml2rfc#837) by [@kesara](https://github.com/kesara))*
- [`9821dc6`](ietf-tools/xml2rfc@9821dc6) - RTL unicode issue in PDF *(PR [#884](ietf-tools/xml2rfc#884) by [@kesara](https://github.com/kesara))*

- [`c67f5fd`](ietf-tools/xml2rfc@c67f5fd) - Align center aligned ASCII art correctly *(PR [#838](ietf-tools/xml2rfc#838) by [@kesara](https://github.com/kesara))*

- [`701d5ce`](ietf-tools/xml2rfc@701d5ce) - Add github issue templates *(commit by [@kesara](https://github.com/kesara))*

- [`c6343a9`](ietf-tools/xml2rfc@c6343a9) - Update WeasyPrint *(PR [#802](ietf-tools/xml2rfc#802) by [@kesara](https://github.com/kesara))*

- [`95dba00`](ietf-tools/xml2rfc@95dba00) - Fix typo in README file *(PR [#843](ietf-tools/xml2rfc#843) by [@bkmgit](https://github.com/bkmgit))*
- [`0f06e27`](ietf-tools/xml2rfc@0f06e27) - Prevent submission date warnings for RFCs  *(PR [#842](ietf-tools/xml2rfc#842) by [@kesara](https://github.com/kesara))*
- [`e5c45d4`](ietf-tools/xml2rfc@e5c45d4) - Add an option to disable rfc-local.css link *(PR [#840](ietf-tools/xml2rfc#840) by [@martinthomson](https://github.com/martinthomson))*

- [`41b177a`](ietf-tools/xml2rfc@41b177a) - Fix tests to adapt bib.ietf.org *(PR [#852](ietf-tools/xml2rfc#852) by [@kesara](https://github.com/kesara))*
- [`c9b9d09`](ietf-tools/xml2rfc@c9b9d09) - Update valid tests for --no-rfc-local option *(PR [#854](ietf-tools/xml2rfc#854) by [@kesara](https://github.com/kesara))*

- [`63de72a`](ietf-tools/xml2rfc@63de72a) - Use bib.ietf.org for citations  *(PR [#804](ietf-tools/xml2rfc#804) by [@kesara](https://github.com/kesara))*
- [`ad44bb8`](ietf-tools/xml2rfc@ad44bb8) - Render unicode characters in SVG elements correctly  *(PR [#832](ietf-tools/xml2rfc#832) by [@kesara](https://github.com/kesara))*

- [`6938d80`](ietf-tools/xml2rfc@6938d80) - Drop support for Python 3.6 *(PR [#796](ietf-tools/xml2rfc#796) by [@kesara](https://github.com/kesara))*

- [`47270ba`](ietf-tools/xml2rfc@47270ba) - Handle date type errors gracefully *(PR [#795](ietf-tools/xml2rfc#795) by [@cabo](https://github.com/cabo))*
- [`79fd4d9`](ietf-tools/xml2rfc@79fd4d9) - Stop crashing when author element doesn't have a name *(PR [#800](ietf-tools/xml2rfc#800) by [@cabo](https://github.com/cabo))*
- [`d5f8a1c`](ietf-tools/xml2rfc@d5f8a1c) - Use bib.ietf.org for citations *(PR [#799](ietf-tools/xml2rfc#799) by [@kesara](https://github.com/kesara))*

- [`b94d6bb`](ietf-tools/xml2rfc@b94d6bb) - **deps**: Update Python dependencies *(PR [#797](ietf-tools/xml2rfc#797) by [@kesara](https://github.com/kesara))*

- [`f73ece7`](ietf-tools/xml2rfc@f73ece7) - Update setuptools metadata *(PR [#789](ietf-tools/xml2rfc#789) by [@kesara](https://github.com/kesara))*

- [`1643d68`](ietf-tools/xml2rfc@1643d68) - Display long ASCII art correctly in PDF *(PR [#788](ietf-tools/xml2rfc#788) by [@kesara](https://github.com/kesara))*

- [`51e8b24`](ietf-tools/xml2rfc@51e8b24) - Add support for Python 3.10 *(PR [#772](ietf-tools/xml2rfc#772) by [@dkg](https://github.com/dkg))*

- [`46399d7`](ietf-tools/xml2rfc@46399d7) - Implement emboldening primary iref entries *(PR [#778](ietf-tools/xml2rfc#778) by [@cabo](https://github.com/cabo))*

- [`e0095fd`](ietf-tools/xml2rfc@e0095fd) - Remove Python version specific test results *(PR [#780](ietf-tools/xml2rfc#780) by [@kesara](https://github.com/kesara))*

- [`42568b3`](ietf-tools/xml2rfc@42568b3) - evaluate date.today() on class init, not import *(PR [#774](ietf-tools/xml2rfc#774) by [@jennifer-richards](https://github.com/jennifer-richards))*
- [`07ef95e`](ietf-tools/xml2rfc@07ef95e) - Fix warnings in text and manpage *(PR [#775](ietf-tools/xml2rfc#775) by [@kesara](https://github.com/kesara))*

- [`6b32a5d`](ietf-tools/xml2rfc@6b32a5d) - Render text without toc *(PR [#766](ietf-tools/xml2rfc#766) by [@cabo](https://github.com/cabo))*
- [`384399c`](ietf-tools/xml2rfc@384399c) - Display ASCII names for authors in references *(PR [#771](ietf-tools/xml2rfc#771) by [@kesara](https://github.com/kesara))*

- [`8436c2f`](ietf-tools/xml2rfc@8436c2f) - Make index sort case insensitive *(PR [#763](ietf-tools/xml2rfc#763) by [@kesara](https://github.com/kesara))*
- [`0884e8d`](ietf-tools/xml2rfc@0884e8d) - Don't attempt to select initials when fullname contains non Latin characters *(PR [#760](ietf-tools/xml2rfc#760) by [@kesara](https://github.com/kesara))*
- [`9e12093`](ietf-tools/xml2rfc@9e12093) - Make long sourcecode sections breakable *(PR [#764](ietf-tools/xml2rfc#764) by [@kesara](https://github.com/kesara))*

- [`24406e5`](ietf-tools/xml2rfc@24406e5) - Bug fix in tests/input/draft-miek-test.v3.xml *(PR [#738](ietf-tools/xml2rfc#738) by [@kesara](https://github.com/kesara))*
- [`72255eb`](ietf-tools/xml2rfc@72255eb) - Pin PyPDF2 to 2.16.* versions *(PR [#762](ietf-tools/xml2rfc#762) by [@kesara](https://github.com/kesara))*

- [`8fc7efb`](ietf-tools/xml2rfc@8fc7efb) - Update deprecated tox configuration option *(PR [#746](ietf-tools/xml2rfc#746) by [@kesara](https://github.com/kesara))*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants