diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2018-07-27 10:23:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-27 10:23:55 -0400 |
commit | 6ee07d2735d86d7a3d0b31c3409d42d31997a96c (patch) | |
tree | 3e7827f8ef4581c321a4a53ccc05d46e9975823f /tests/php/Emphasis.text | |
parent | 5d2cde235c9ad17cdc3678ed51e1d693967b5a5a (diff) | |
download | markdown-6ee07d2735d86d7a3d0b31c3409d42d31997a96c.tar.gz markdown-6ee07d2735d86d7a3d0b31c3409d42d31997a96c.tar.bz2 markdown-6ee07d2735d86d7a3d0b31c3409d42d31997a96c.zip |
Replace homegrown OrderedDict with purpose-built Registry. (#688)
All processors and patterns now get "registered" to a Registry.
Each item is given a name (string) and a priority. The name is for
later reference and the priority can be either an integer or float
and is used to sort. Priority is sorted from highest to lowest. A
Registry instance is a list-like iterable with the items auto-sorted
by priority. If two items have the same priority, then they are
listed in the order there were "registered". Registering a new
item with the same name as an already registered item replaces
the old item with the new item (however, the new item is sorted by
its newly assigned priority). To remove an item, "deregister" it by
name or index.
A backwards compatible shim is included so that existing simple
extensions should continue to work. DeprecationWarnings will
be raised for any code which calls the old API.
Fixes #418.
Diffstat (limited to 'tests/php/Emphasis.text')
0 files changed, 0 insertions, 0 deletions