diff --git a/markdown/blockprocessors.py b/markdown/blockprocessors.py index 3d0ff86eb..8a876e823 100644 --- a/markdown/blockprocessors.py +++ b/markdown/blockprocessors.py @@ -259,7 +259,7 @@ def run(self, parent, blocks): code = sibling[0] block, theRest = self.detab(block) code.text = util.AtomicString( - '{}\n{}\n'.format(code.text, util.code_escape(block.rstrip())) + f'{code.text}\n{util.code_escape(block.rstrip())}\n' ) else: # This is a new codeblock. Create the elements and insert text. @@ -421,12 +421,12 @@ def get_items(self, block): # This is an indented (possibly nested) item. if items[-1].startswith(' '*self.tab_length): # Previous item was indented. Append to that item. - items[-1] = '{}\n{}'.format(items[-1], line) + items[-1] = f'{items[-1]}\n{line}' else: items.append(line) else: # This is another line of previous item. Append to that item. - items[-1] = '{}\n{}'.format(items[-1], line) + items[-1] = f'{items[-1]}\n{line}' return items @@ -552,7 +552,7 @@ def run(self, parent, blocks): len(sibling) and sibling[0].tag == 'code'): # Last block is a codeblock. Append to preserve whitespace. sibling[0].text = util.AtomicString( - '{}{}'.format(sibling[0].text, filler) + f'{sibling[0].text}{filler}' ) @@ -608,13 +608,13 @@ def run(self, parent, blocks): if sibling is not None: # Insetrt after sibling. if sibling.tail: - sibling.tail = '{}\n{}'.format(sibling.tail, block) + sibling.tail = f'{sibling.tail}\n{block}' else: sibling.tail = '\n%s' % block else: # Append to parent.text if parent.text: - parent.text = '{}\n{}'.format(parent.text, block) + parent.text = f'{parent.text}\n{block}' else: parent.text = block.lstrip() else: diff --git a/markdown/extensions/admonition.py b/markdown/extensions/admonition.py index cb8d9015c..ff5afd5ae 100644 --- a/markdown/extensions/admonition.py +++ b/markdown/extensions/admonition.py @@ -128,7 +128,7 @@ def run(self, parent, blocks): if m: klass, title = self.get_class_and_title(m) div = etree.SubElement(parent, 'div') - div.set('class', '{} {}'.format(self.CLASSNAME, klass)) + div.set('class', f'{self.CLASSNAME} {klass}') if title: p = etree.SubElement(div, 'p') p.text = title diff --git a/markdown/extensions/attr_list.py b/markdown/extensions/attr_list.py index 9a675519c..ddf8db123 100644 --- a/markdown/extensions/attr_list.py +++ b/markdown/extensions/attr_list.py @@ -65,9 +65,9 @@ def isheader(elem): class AttrListTreeprocessor(Treeprocessor): BASE_RE = r'\{\:?[ ]*([^\}\n ][^\}\n]*)[ ]*\}' - HEADER_RE = re.compile(r'[ ]+{}[ ]*$'.format(BASE_RE)) - BLOCK_RE = re.compile(r'\n[ ]*{}[ ]*$'.format(BASE_RE)) - INLINE_RE = re.compile(r'^{}'.format(BASE_RE)) + HEADER_RE = re.compile(fr'[ ]+{BASE_RE}[ ]*$') + BLOCK_RE = re.compile(fr'\n[ ]*{BASE_RE}[ ]*$') + INLINE_RE = re.compile(fr'^{BASE_RE}') NAME_RE = re.compile(r'[^A-Z_a-z\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u02ff' r'\u0370-\u037d\u037f-\u1fff\u200c-\u200d' r'\u2070-\u218f\u2c00-\u2fef\u3001-\ud7ff' @@ -141,7 +141,7 @@ def assign_attrs(self, elem, attrs): # add to class cls = elem.get('class') if cls: - elem.set('class', '{} {}'.format(cls, v)) + elem.set('class', f'{cls} {v}') else: elem.set('class', v) else: diff --git a/markdown/extensions/codehilite.py b/markdown/extensions/codehilite.py index a1e9dc38d..7bc5ecb1f 100644 --- a/markdown/extensions/codehilite.py +++ b/markdown/extensions/codehilite.py @@ -167,7 +167,7 @@ def hilite(self, shebang=True): txt = txt.replace('"', '"') classes = [] if self.lang: - classes.append('{}{}'.format(self.lang_prefix, self.lang)) + classes.append(f'{self.lang_prefix}{self.lang}') if self.options['linenos']: classes.append('linenums') class_str = '' diff --git a/markdown/extensions/def_list.py b/markdown/extensions/def_list.py index 17549f031..54b9209fc 100644 --- a/markdown/extensions/def_list.py +++ b/markdown/extensions/def_list.py @@ -43,7 +43,7 @@ def run(self, parent, blocks): else: d, theRest = self.detab(block) if d: - d = '{}\n{}'.format(m.group(2), d) + d = f'{m.group(2)}\n{d}' else: d = m.group(2) sibling = self.lastChild(parent) diff --git a/markdown/extensions/footnotes.py b/markdown/extensions/footnotes.py index 8a2e3c522..c97cd4055 100644 --- a/markdown/extensions/footnotes.py +++ b/markdown/extensions/footnotes.py @@ -153,14 +153,14 @@ def makeFootnoteId(self, id): if self.getConfig("UNIQUE_IDS"): return 'fn%s%d-%s' % (self.get_separator(), self.unique_prefix, id) else: - return 'fn{}{}'.format(self.get_separator(), id) + return f'fn{self.get_separator()}{id}' def makeFootnoteRefId(self, id, found=False): """ Return footnote back-link id. """ if self.getConfig("UNIQUE_IDS"): return self.unique_ref('fnref%s%d-%s' % (self.get_separator(), self.unique_prefix, id), found) else: - return self.unique_ref('fnref{}{}'.format(self.get_separator(), id), found) + return self.unique_ref(f'fnref{self.get_separator()}{id}', found) def makeFootnotesDiv(self, root): """ Return div of footnotes as et Element. """ @@ -347,7 +347,7 @@ def add_duplicates(self, li, duplicates): def get_num_duplicates(self, li): """ Get the number of duplicate refs of the footnote. """ fn, rest = li.attrib.get('id', '').split(self.footnotes.get_separator(), 1) - link_id = '{}ref{}{}'.format(fn, self.footnotes.get_separator(), rest) + link_id = f'{fn}ref{self.footnotes.get_separator()}{rest}' return self.footnotes.found_refs.get(link_id, 0) def handle_duplicates(self, parent): diff --git a/markdown/extensions/md_in_html.py b/markdown/extensions/md_in_html.py index ec7dcba0e..510b52f7e 100644 --- a/markdown/extensions/md_in_html.py +++ b/markdown/extensions/md_in_html.py @@ -32,11 +32,11 @@ def __init__(self, md, *args, **kwargs): # All block-level tags. self.block_level_tags = set(md.block_level_elements.copy()) # Block-level tags in which the content only gets span level parsing - self.span_tags = set( - ['address', 'dd', 'dt', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'legend', 'li', 'p', 'summary', 'td', 'th'] - ) + self.span_tags = { + 'address', 'dd', 'dt', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'legend', 'li', 'p', 'summary', 'td', 'th' + } # Block-level tags which never get their content parsed. - self.raw_tags = set(['canvas', 'math', 'option', 'pre', 'script', 'style', 'textarea']) + self.raw_tags = {'canvas', 'math', 'option', 'pre', 'script', 'style', 'textarea'} super().__init__(md, *args, **kwargs) diff --git a/markdown/extensions/toc.py b/markdown/extensions/toc.py index 1ded18d63..a786d21d2 100644 --- a/markdown/extensions/toc.py +++ b/markdown/extensions/toc.py @@ -30,7 +30,7 @@ def slugify(value, separator, unicode=False): value = unicodedata.normalize('NFKD', value) value = value.encode('ascii', 'ignore').decode('ascii') value = re.sub(r'[^\w\s-]', '', value).strip().lower() - return re.sub(r'[{}\s]+'.format(separator), separator, value) + return re.sub(fr'[{separator}\s]+', separator, value) def slugify_unicode(value, separator): @@ -170,7 +170,7 @@ def __init__(self, md, config): self.permalink_title = config["permalink_title"] self.header_rgx = re.compile("[Hh][123456]") if isinstance(config["toc_depth"], str) and '-' in config["toc_depth"]: - self.toc_top, self.toc_bottom = [int(x) for x in config["toc_depth"].split('-')] + self.toc_top, self.toc_bottom = (int(x) for x in config["toc_depth"].split('-')) else: self.toc_top = 1 self.toc_bottom = int(config["toc_depth"]) diff --git a/markdown/extensions/wikilinks.py b/markdown/extensions/wikilinks.py index cddee7ad7..1c098bcb3 100644 --- a/markdown/extensions/wikilinks.py +++ b/markdown/extensions/wikilinks.py @@ -24,7 +24,7 @@ def build_url(label, base, end): """ Build a url from the label, a base, and an end. """ clean_label = re.sub(r'([ ]+_)|(_[ ]+)|([ ]+)', '_', label) - return '{}{}{}'.format(base, clean_label, end) + return f'{base}{clean_label}{end}' class WikiLinkExtension(Extension): diff --git a/markdown/htmlparser.py b/markdown/htmlparser.py index 3512d1a77..f1075efe2 100644 --- a/markdown/htmlparser.py +++ b/markdown/htmlparser.py @@ -74,7 +74,7 @@ def __init__(self, md, *args, **kwargs): kwargs['convert_charrefs'] = False # Block tags that should contain no content (self closing) - self.empty_tags = set(['hr']) + self.empty_tags = {'hr'} # This calls self.reset super().__init__(*args, **kwargs) @@ -108,7 +108,7 @@ def close(self): def line_offset(self): """Returns char index in self.rawdata for the start of the current line. """ if self.lineno > 1 and '\n' in self.rawdata: - m = re.match(r'([^\n]*\n){{{}}}'.format(self.lineno-1), self.rawdata) + m = re.match(fr'([^\n]*\n){{{self.lineno-1}}}', self.rawdata) if m: return m.end() else: # pragma: no cover @@ -143,7 +143,7 @@ def get_endtag_text(self, tag): return self.rawdata[start:m.end()] else: # pragma: no cover # Failed to extract from raw data. Assume well formed and lowercase. - return ''.format(tag) + return f'' def handle_starttag(self, tag, attrs): # Handle tags that should always be empty and do not specify a closing tag @@ -228,23 +228,23 @@ def handle_startendtag(self, tag, attrs): self.handle_empty_tag(self.get_starttag_text(), is_block=self.md.is_block_level(tag)) def handle_charref(self, name): - self.handle_empty_tag('&#{};'.format(name), is_block=False) + self.handle_empty_tag(f'&#{name};', is_block=False) def handle_entityref(self, name): - self.handle_empty_tag('&{};'.format(name), is_block=False) + self.handle_empty_tag(f'&{name};', is_block=False) def handle_comment(self, data): - self.handle_empty_tag(''.format(data), is_block=True) + self.handle_empty_tag(f'', is_block=True) def handle_decl(self, data): - self.handle_empty_tag(''.format(data), is_block=True) + self.handle_empty_tag(f'', is_block=True) def handle_pi(self, data): - self.handle_empty_tag(''.format(data), is_block=True) + self.handle_empty_tag(f'', is_block=True) def unknown_decl(self, data): end = ']]>' if data.startswith('CDATA[') else ']>' - self.handle_empty_tag(''.format(self.__class__.__name__, list(self)) + return f'<{self.__class__.__name__}({list(self)})>' def get_index_for_name(self, name): """ @@ -308,7 +308,7 @@ def get_index_for_name(self, name): return self._priority.index( [x for x in self._priority if x.name == name][0] ) - raise ValueError('No item named "{}" exists.'.format(name)) + raise ValueError(f'No item named "{name}" exists.') def register(self, item, name, priority): """ diff --git a/tests/test_syntax/blocks/test_html_blocks.py b/tests/test_syntax/blocks/test_html_blocks.py index 9ec066824..397a15d47 100644 --- a/tests/test_syntax/blocks/test_html_blocks.py +++ b/tests/test_syntax/blocks/test_html_blocks.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """ Python Markdown diff --git a/tests/test_syntax/extensions/test_abbr.py b/tests/test_syntax/extensions/test_abbr.py index 64388c2d8..03dbd858f 100644 --- a/tests/test_syntax/extensions/test_abbr.py +++ b/tests/test_syntax/extensions/test_abbr.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """ Python Markdown diff --git a/tests/test_syntax/extensions/test_md_in_html.py b/tests/test_syntax/extensions/test_md_in_html.py index 6c13f11a6..f82e50a2b 100644 --- a/tests/test_syntax/extensions/test_md_in_html.py +++ b/tests/test_syntax/extensions/test_md_in_html.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """ Python Markdown diff --git a/tests/test_syntax/extensions/test_smarty.py b/tests/test_syntax/extensions/test_smarty.py index fc635ad3d..52bd8bc74 100644 --- a/tests/test_syntax/extensions/test_smarty.py +++ b/tests/test_syntax/extensions/test_smarty.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """ Python Markdown