Lines Matching refs:OrderedDict
30 * [OrderedDict][]
363 the Markdown class in [OrderedDict][]s. Your ``Extension`` class will need to
365 processors and patterns into the appropriate location in an OrderedDict, remove
376 access the [OrderedDict][]s of processors and patterns. They are found
412 <h4 id="ordereddict">OrderedDict</h4>
414 An OrderedDict is a dictionary like object that retains the order of it's
416 the OrderedDict. However, an item can also be inserted into the OrderedDict
419 Think of OrderedDict as a combination of a list and a dictionary as it has
427 helper method ``add()`` to add additional items to an existing OrderedDict.
440 beginning or end of the OrderedDict respectively.
451 >>> od = markdown.OrderedDict()
458 Note that when building an OrderedDict in order, the extra features of the
460 manipulating an existing OrderedDict, ``add`` can be very helpful. So let's
461 insert another item into the OrderedDict.
476 sorted order of an OrderedDict. For example, suppose an extension adding
481 Once an OrderedDict is created, the items are available via key:
590 [OrderedDict]: #ordereddict