diff --git a/CHANGELOG.md b/CHANGELOG.md index 34e8014..cecd4a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,15 @@ # Changelog +## v0.17.2 - 2024-06-16 + +- fixed qualified return types appearing squashed together without whitespace in some circumstances +- fixed performance regression in post-process step +- updated m.css +- minor style fixes + ## v0.17.1 - 2024-06-14 -- Fixed `'tuple' object has no attribute 'week'` error on Python <= 3.8 +- fixed `'tuple' object has no attribute 'week'` error on Python <= 3.8 ## v0.17.0 - 2024-04-21 diff --git a/src/poxy/css/m-theme-light.css b/src/poxy/css/m-theme-light.css index 093b34c..2d41644 100644 --- a/src/poxy/css/m-theme-light.css +++ b/src/poxy/css/m-theme-light.css @@ -126,7 +126,7 @@ --success-filled-background-color: hsl(var(--success-hue), calc(var(--success-saturation) * 0.9), calc(var(--success-luminosity) * 1.8)); --success-filled-link-color: hsl(var(--success-hue), calc(var(--success-saturation) * 0.8), 40%); --success-filled-link-active-color: var(--success-filled-color); - + --warning-hue: 53; --warning-saturation: 50%; --warning-luminosity: 44%; @@ -164,7 +164,7 @@ --dim-link-color: #292929; --dim-link-active-color: hsl(var(--dim-hue), var(--dim-saturation), calc(var(--dim-luminosity) * 0.7)); --dim-filled-color: #656565; - --dim-filled-background-color: #c5c4c4; + --dim-filled-background-color: #d3d3d3; --dim-filled-link-color: #292929; --dim-filled-link-active-color: #7c7c7c; --dim-button-active-color: #292929; diff --git a/src/poxy/fixers.py b/src/poxy/fixers.py index 453995e..eaef7df 100644 --- a/src/poxy/fixers.py +++ b/src/poxy/fixers.py @@ -11,6 +11,7 @@ from bs4 import NavigableString from trieregex import TrieRegEx +from typing import Tuple, Union from . import soup from .project import Context @@ -843,6 +844,10 @@ class Links(HTMLFixer): def __call__(self, context: Context, doc: soup.HTMLDocument, path: Path): changed = False + + elems_with_ids = [e for e in doc.body(id=True) if e['id'] is not None and len(e['id'])] + elems_with_ids = {e['id']: e for e in elems_with_ids} + for anchor in doc.body('a', href=True): # make sure internal links to #ids on the same page don't get treated as external links # (some versions of doxygen did this with @ref) @@ -918,19 +923,20 @@ def __call__(self, context: Context, doc: soup.HTMLDocument, path: Path): if ( is_mdoc and anchor['href'].startswith(r'#') - and (len(anchor['href']) == 1 or doc.body.find(id=anchor['href'][1:]) is None) + and (len(anchor['href']) == 1 or anchor['href'][1:] not in elems_with_ids) ): changed = True soup.remove_class(anchor, 'm-doc') soup.add_class(anchor, 'm-doc-self') anchor['href'] = '#' - parent_with_id = anchor.find_parent(id=self.__internal_doc_id) + parent_with_id = anchor.find_parent(id=self.__internal_doc_id, cutoff=doc.body) if parent_with_id is None: - parent_with_id = anchor.find_parent((r'dt', r'tr'), id=False) + parent_with_id = anchor.find_parent((r'dt', r'tr'), id=False, cutoff=doc.body) if parent_with_id is not None: parent_with_id['id'] = sha256(parent_with_id.get_text()) + elems_with_ids[parent_with_id['id']] = parent_with_id if parent_with_id is None: - parent_with_id = anchor.find_parent(id=True) + parent_with_id = anchor.find_parent(id=True, cutoff=doc.body) if parent_with_id is not None: anchor['href'] = '#' + parent_with_id['id'] continue @@ -1058,9 +1064,9 @@ def __call__(self, context: Context, text: str, path: Path) -> str: return text -class DeducedAutoReturnType(PlainTextFixer): +class ReturnTypes(PlainTextFixer): ''' - Fixes 'auto() -> auto'. + Fixes various issues with function return types ''' __deduced_auto_return_type_brief = re.compile( @@ -1069,8 +1075,30 @@ class DeducedAutoReturnType(PlainTextFixer): __deduced_auto_return_type = re.compile(rf'_{WBR}_{WBR}poxy_{WBR}deduced_{WBR}auto_{WBR}return_{WBR}type') def __call__(self, context: Context, text: str, path: Path) -> str: + + # fix 'auto() -> auto' text = self.__deduced_auto_return_type_brief.sub(r')', text) text = self.__deduced_auto_return_type.sub(r'auto', text) + + # fix missing whitespace between qualifiers + text = re.sub( + r'()(const|volatile|const\s+volatile|volatile\s+const)( into → + text = re.sub( + r'\)((?:\s+(?:const|volatile|mutable|noexcept|&|&&|&|&&))*)\s+->', + r')\1 → ', + text, + ) + return text @@ -1112,39 +1140,41 @@ class Pygments(PlainTextFixer): ''' def __call__(self, context: Context, text: str, path: Path) -> str: - if re.search(r'class="[^"]*?m-code[^"]*?"', text): - # at some point pygments started adding markup to whitespace, - # causing an awful lot of markup bloat. m.css does not style this markup - # so we can safely strip it away. - text = re.sub(r'(\s+)', r'\1', text) - - # fix numeric UDLs being treated as a separate token - text = re.sub( - rf'(.*?)((?:_[a-zA-Z0-9_]*)|{BUILTIN_LITERALS})', # - r'\2\3', - text, - ) + if not re.search(r'class="[^"]*?m-code[^"]*?"', text): + return None + + # at some point pygments started adding markup to whitespace, + # causing an awful lot of markup bloat. m.css does not style this markup + # so we can safely strip it away. + text = re.sub(r'(\s+)', r'\1', text) + + # fix numeric UDLs being treated as a separate token + text = re.sub( + rf'(.*?)((?:_[a-zA-Z0-9_]*)|{BUILTIN_LITERALS})', # + r'\2\3', + text, + ) - # fix string UDLs being treated as a separate token - text = re.sub( - rf'(.*?)((?:_[a-zA-Z0-9_]*)|{BUILTIN_LITERALS})', # - r'\1\2', - text, - ) + # fix string UDLs being treated as a separate token + text = re.sub( + rf'(.*?)((?:_[a-zA-Z0-9_]*)|{BUILTIN_LITERALS})', # + r'\1\2', + text, + ) - # hack to make some basic #ifs, #defines etc. look nice - text = re.sub( - r'(\s*#\s*(?:(?:el)?if(?:n?def)?|define|undef)\s+)([a-zA-Z_][a-zA-Z_0-9]*?)([^a-zA-Z_0-9])', # - r'\1\2\3', - text, - ) + # hack to make some basic #ifs, #defines etc. look nice + text = re.sub( + r'(\s*#\s*(?:(?:el)?if(?:n?def)?|define|undef)\s+)([a-zA-Z_][a-zA-Z_0-9]*?)([^a-zA-Z_0-9])', # + r'\1\2\3', + text, + ) - # hack to make basic "using XXXX = ..." directives look nice - text = re.sub( - r'(\s*using\s*)(\s+)([a-zA-Z_][a-zA-Z0-9_]*?)(\s+)(\s*=\s*)', - r'\1\2\3\4\5', - text, - ) + # hack to make basic "using XXXX = ..." directives look nice + text = re.sub( + r'(\s*using\s*)(\s+)([a-zA-Z_][a-zA-Z0-9_]*?)(\s+)(\s*=\s*)', + r'\1\2\3\4\5', + text, + ) return text @@ -1163,24 +1193,28 @@ def __call__(self, context: Context, text: str, path: Path) -> str: ) -__all__ = [ - 'HTMLFixer', - 'PlainTextFixer', - 'CustomTags', - 'CPPModifiers1', - 'CPPModifiers2', - 'StripIncludes', - 'Banner', - 'CodeBlocks', - 'AutoDocLinks', - 'Links', - 'EmptyTags', - 'MarkTOC', - 'InjectSVGs', - 'ImplementationDetails', - 'MarkdownPages', - 'Pygments', - 'InstallSearchShim', - 'DeducedAutoReturnType', - 'RemoveTemplateNoise', -] +def create_all() -> Tuple[Union[HTMLFixer, PlainTextFixer]]: + + # order matters here! + return ( + MarkTOC(), # html + Pygments(), + CodeBlocks(), # html + Banner(), # html + CPPModifiers1(), # html + CPPModifiers2(), # html + StripIncludes(), # html + AutoDocLinks(), # html + Links(), # html + CustomTags(), # html + RemoveTemplateNoise(), # html + EmptyTags(), # html + ImplementationDetails(), + MarkdownPages(), + InstallSearchShim(), + ReturnTypes(), + InjectSVGs(), # html + ) + + +__all__ = ['HTMLFixer', 'PlainTextFixer', 'create_all'] diff --git a/src/poxy/generated/6aa12ac32e258617e37a0030dc54f789b894368b.css b/src/poxy/generated/6aa12ac32e258617e37a0030dc54f789b894368b.css index d65cf63..540a093 100644 --- a/src/poxy/generated/6aa12ac32e258617e37a0030dc54f789b894368b.css +++ b/src/poxy/generated/6aa12ac32e258617e37a0030dc54f789b894368b.css @@ -3,7 +3,7 @@ font-family: 'Source Code Pro'; font-style: italic; font-weight: 400; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQ10YVJg.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQ10YVJg.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @@ -11,7 +11,7 @@ font-family: 'Source Code Pro'; font-style: italic; font-weight: 400; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bSl0YVJg.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bSl0YVJg.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @@ -19,7 +19,7 @@ font-family: 'Source Code Pro'; font-style: italic; font-weight: 400; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQl0YVJg.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQl0YVJg.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @@ -27,15 +27,15 @@ font-family: 'Source Code Pro'; font-style: italic; font-weight: 400; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTV0YVJg.woff2) format('woff2'); - unicode-range: U+0370-03FF; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTV0YVJg.woff2) format('woff2'); + unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Source Code Pro'; font-style: italic; font-weight: 400; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQV0YVJg.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQV0YVJg.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @@ -43,15 +43,15 @@ font-family: 'Source Code Pro'; font-style: italic; font-weight: 400; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQF0YVJg.woff2) format('woff2'); - unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQF0YVJg.woff2) format('woff2'); + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Source Code Pro'; font-style: italic; font-weight: 400; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTl0Y.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTl0Y.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @@ -59,7 +59,7 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 400; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMOvWjMY.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMOvWjMY.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @@ -67,7 +67,7 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 400; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_SiYsKILxRpg3hIP6sJ7fM7PqlOevWjMY.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlOevWjMY.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @@ -75,7 +75,7 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 400; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMevWjMY.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMevWjMY.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @@ -83,15 +83,15 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 400; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2) format('woff2'); - unicode-range: U+0370-03FF; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2) format('woff2'); + unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Source Code Pro'; font-style: normal; font-weight: 400; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMuvWjMY.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMuvWjMY.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @@ -99,15 +99,15 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 400; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2) format('woff2'); - unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2) format('woff2'); + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Source Code Pro'; font-style: normal; font-weight: 400; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @@ -115,7 +115,7 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 600; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMOvWjMY.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMOvWjMY.woff2) format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; } /* cyrillic */ @@ -123,7 +123,7 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 600; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_SiYsKILxRpg3hIP6sJ7fM7PqlOevWjMY.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlOevWjMY.woff2) format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; } /* greek-ext */ @@ -131,7 +131,7 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 600; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMevWjMY.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMevWjMY.woff2) format('woff2'); unicode-range: U+1F00-1FFF; } /* greek */ @@ -139,15 +139,15 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 600; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2) format('woff2'); - unicode-range: U+0370-03FF; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2) format('woff2'); + unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { font-family: 'Source Code Pro'; font-style: normal; font-weight: 600; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMuvWjMY.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMuvWjMY.woff2) format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; } /* latin-ext */ @@ -155,15 +155,15 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 600; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2) format('woff2'); - unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2) format('woff2'); + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Source Code Pro'; font-style: normal; font-weight: 600; - src: url(https://fonts.gstatic.com/s/sourcecodepro/v22/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2) format('woff2'); + src: url(https://fonts.gstatic.com/s/sourcecodepro/v23/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* cyrillic-ext */ @@ -196,7 +196,7 @@ font-style: italic; font-weight: 400; src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2'); - unicode-range: U+0370-03FF; + unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { @@ -212,7 +212,7 @@ font-style: italic; font-weight: 400; src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2'); - unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { @@ -252,7 +252,7 @@ font-style: italic; font-weight: 600; src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdv18Smxg.woff2) format('woff2'); - unicode-range: U+0370-03FF; + unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { @@ -268,7 +268,7 @@ font-style: italic; font-weight: 600; src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdi18Smxg.woff2) format('woff2'); - unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { @@ -308,7 +308,7 @@ font-style: normal; font-weight: 400; src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2'); - unicode-range: U+0370-03FF; + unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { @@ -324,7 +324,7 @@ font-style: normal; font-weight: 400; src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2'); - unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { @@ -364,7 +364,7 @@ font-style: normal; font-weight: 600; src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlBduz8A.woff2) format('woff2'); - unicode-range: U+0370-03FF; + unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } /* vietnamese */ @font-face { @@ -380,7 +380,7 @@ font-style: normal; font-weight: 600; src: url(https://fonts.gstatic.com/s/sourcesanspro/v22/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRduz8A.woff2) format('woff2'); - unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; + unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { diff --git a/src/poxy/generated/emoji.json b/src/poxy/generated/emoji.json index 423951c..1cab2e9 100644 --- a/src/poxy/generated/emoji.json +++ b/src/poxy/generated/emoji.json @@ -579,6 +579,10 @@ 127958, "https://github.githubassets.com/images/icons/emoji/unicode/1f3d6.png?v8" ], + "beans": [ + 129752, + "https://github.githubassets.com/images/icons/emoji/unicode/1fad8.png?v8" + ], "bear": [ 128059, "https://github.githubassets.com/images/icons/emoji/unicode/1f43b.png?v8" @@ -723,6 +727,17 @@ 129452, "https://github.githubassets.com/images/icons/emoji/unicode/1f9ac.png?v8" ], + "biting_lip": [ + 129766, + "https://github.githubassets.com/images/icons/emoji/unicode/1fae6.png?v8" + ], + "black_bird": [ + [ + 128038, + 11035 + ], + "https://github.githubassets.com/images/icons/emoji/unicode/1f426-2b1b.png?v8" + ], "black_cat": [ [ 128008, @@ -1046,6 +1061,10 @@ 129483, "https://github.githubassets.com/images/icons/emoji/unicode/1f9cb.png?v8" ], + "bubbles": [ + 129767, + "https://github.githubassets.com/images/icons/emoji/unicode/1fae7.png?v8" + ], "bucket": [ 129699, "https://github.githubassets.com/images/icons/emoji/unicode/1faa3.png?v8" @@ -1778,6 +1797,10 @@ 169, "https://github.githubassets.com/images/icons/emoji/unicode/00a9.png?v8" ], + "coral": [ + 129720, + "https://github.githubassets.com/images/icons/emoji/unicode/1fab8.png?v8" + ], "corn": [ 127805, "https://github.githubassets.com/images/icons/emoji/unicode/1f33d.png?v8" @@ -1879,6 +1902,10 @@ 128081, "https://github.githubassets.com/images/icons/emoji/unicode/1f451.png?v8" ], + "crutch": [ + 129660, + "https://github.githubassets.com/images/icons/emoji/unicode/1fa7c.png?v8" + ], "cry": [ 128546, "https://github.githubassets.com/images/icons/emoji/unicode/1f622.png?v8" @@ -2191,10 +2218,18 @@ ], "https://github.githubassets.com/images/icons/emoji/unicode/1f1e9-1f1f4.png?v8" ], + "donkey": [ + 129743, + "https://github.githubassets.com/images/icons/emoji/unicode/1facf.png?v8" + ], "door": [ 128682, "https://github.githubassets.com/images/icons/emoji/unicode/1f6aa.png?v8" ], + "dotted_line_face": [ + 129765, + "https://github.githubassets.com/images/icons/emoji/unicode/1fae5.png?v8" + ], "doughnut": [ 127849, "https://github.githubassets.com/images/icons/emoji/unicode/1f369.png?v8" @@ -2361,6 +2396,10 @@ 128231, "https://github.githubassets.com/images/icons/emoji/unicode/1f4e7.png?v8" ], + "empty_nest": [ + 129721, + "https://github.githubassets.com/images/icons/emoji/unicode/1fab9.png?v8" + ], "end": [ 128282, "https://github.githubassets.com/images/icons/emoji/unicode/1f51a.png?v8" @@ -2476,6 +2515,10 @@ ], "https://github.githubassets.com/images/icons/emoji/unicode/1f62e-1f4a8.png?v8" ], + "face_holding_back_tears": [ + 129401, + "https://github.githubassets.com/images/icons/emoji/unicode/1f979.png?v8" + ], "face_in_clouds": [ [ 128566, @@ -2483,10 +2526,22 @@ ], "https://github.githubassets.com/images/icons/emoji/unicode/1f636-1f32b.png?v8" ], + "face_with_diagonal_mouth": [ + 129764, + "https://github.githubassets.com/images/icons/emoji/unicode/1fae4.png?v8" + ], "face_with_head_bandage": [ 129301, "https://github.githubassets.com/images/icons/emoji/unicode/1f915.png?v8" ], + "face_with_open_eyes_and_hand_over_mouth": [ + 129762, + "https://github.githubassets.com/images/icons/emoji/unicode/1fae2.png?v8" + ], + "face_with_peeking_eye": [ + 129763, + "https://github.githubassets.com/images/icons/emoji/unicode/1fae3.png?v8" + ], "face_with_spiral_eyes": [ [ 128565, @@ -2791,6 +2846,10 @@ 128563, "https://github.githubassets.com/images/icons/emoji/unicode/1f633.png?v8" ], + "flute": [ + 129672, + "https://github.githubassets.com/images/icons/emoji/unicode/1fa88.png?v8" + ], "fly": [ 129712, "https://github.githubassets.com/images/icons/emoji/unicode/1fab0.png?v8" @@ -2811,6 +2870,10 @@ 127745, "https://github.githubassets.com/images/icons/emoji/unicode/1f301.png?v8" ], + "folding_hand_fan": [ + 129709, + "https://github.githubassets.com/images/icons/emoji/unicode/1faad.png?v8" + ], "fondue": [ 129749, "https://github.githubassets.com/images/icons/emoji/unicode/1fad5.png?v8" @@ -3048,6 +3111,10 @@ 128157, "https://github.githubassets.com/images/icons/emoji/unicode/1f49d.png?v8" ], + "ginger_root": [ + 129754, + "https://github.githubassets.com/images/icons/emoji/unicode/1fada.png?v8" + ], "giraffe": [ 129426, "https://github.githubassets.com/images/icons/emoji/unicode/1f992.png?v8" @@ -3098,6 +3165,10 @@ ], "https://github.githubassets.com/images/icons/emoji/unicode/1f3cc-2640.png?v8" ], + "goose": [ + 129727, + "https://github.githubassets.com/images/icons/emoji/unicode/1fabf.png?v8" + ], "gorilla": [ 129421, "https://github.githubassets.com/images/icons/emoji/unicode/1f98d.png?v8" @@ -3155,6 +3226,10 @@ 10069, "https://github.githubassets.com/images/icons/emoji/unicode/2755.png?v8" ], + "grey_heart": [ + 129654, + "https://github.githubassets.com/images/icons/emoji/unicode/1fa76.png?v8" + ], "grey_question": [ 10068, "https://github.githubassets.com/images/icons/emoji/unicode/2754.png?v8" @@ -3250,6 +3325,10 @@ ], "https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1fe.png?v8" ], + "hair_pick": [ + 129710, + "https://github.githubassets.com/images/icons/emoji/unicode/1faae.png?v8" + ], "haircut": [ 128135, "https://github.githubassets.com/images/icons/emoji/unicode/1f487.png?v8" @@ -3291,6 +3370,10 @@ 128736, "https://github.githubassets.com/images/icons/emoji/unicode/1f6e0.png?v8" ], + "hamsa": [ + 129708, + "https://github.githubassets.com/images/icons/emoji/unicode/1faac.png?v8" + ], "hamster": [ 128057, "https://github.githubassets.com/images/icons/emoji/unicode/1f439.png?v8" @@ -3303,6 +3386,10 @@ 129325, "https://github.githubassets.com/images/icons/emoji/unicode/1f92d.png?v8" ], + "hand_with_index_finger_and_thumb_crossed": [ + 129776, + "https://github.githubassets.com/images/icons/emoji/unicode/1faf0.png?v8" + ], "handbag": [ 128092, "https://github.githubassets.com/images/icons/emoji/unicode/1f45c.png?v8" @@ -3376,6 +3463,10 @@ 128571, "https://github.githubassets.com/images/icons/emoji/unicode/1f63b.png?v8" ], + "heart_hands": [ + 129782, + "https://github.githubassets.com/images/icons/emoji/unicode/1faf6.png?v8" + ], "heart_on_fire": [ [ 10084, @@ -3407,6 +3498,10 @@ 128178, "https://github.githubassets.com/images/icons/emoji/unicode/1f4b2.png?v8" ], + "heavy_equals_sign": [ + 129008, + "https://github.githubassets.com/images/icons/emoji/unicode/1f7f0.png?v8" + ], "heavy_exclamation_mark": [ 10071, "https://github.githubassets.com/images/icons/emoji/unicode/2757.png?v8" @@ -3568,6 +3663,10 @@ 128726, "https://github.githubassets.com/images/icons/emoji/unicode/1f6d6.png?v8" ], + "hyacinth": [ + 129723, + "https://github.githubassets.com/images/icons/emoji/unicode/1fabb.png?v8" + ], "ice_cream": [ 127848, "https://github.githubassets.com/images/icons/emoji/unicode/1f368.png?v8" @@ -3599,6 +3698,10 @@ 127380, "https://github.githubassets.com/images/icons/emoji/unicode/1f194.png?v8" ], + "identification_card": [ + 129706, + "https://github.githubassets.com/images/icons/emoji/unicode/1faaa.png?v8" + ], "ideograph_advantage": [ 127568, "https://github.githubassets.com/images/icons/emoji/unicode/1f250.png?v8" @@ -3615,6 +3718,10 @@ 128232, "https://github.githubassets.com/images/icons/emoji/unicode/1f4e8.png?v8" ], + "index_pointing_at_the_viewer": [ + 129781, + "https://github.githubassets.com/images/icons/emoji/unicode/1faf5.png?v8" + ], "india": [ [ 127470, @@ -3726,10 +3833,18 @@ 128121, "https://github.githubassets.com/images/icons/emoji/unicode/1f479.png?v8" ], + "jar": [ + 129753, + "https://github.githubassets.com/images/icons/emoji/unicode/1fad9.png?v8" + ], "jeans": [ 128086, "https://github.githubassets.com/images/icons/emoji/unicode/1f456.png?v8" ], + "jellyfish": [ + 129724, + "https://github.githubassets.com/images/icons/emoji/unicode/1fabc.png?v8" + ], "jersey": [ [ 127471, @@ -3812,6 +3927,10 @@ 128287, "https://github.githubassets.com/images/icons/emoji/unicode/1f51f.png?v8" ], + "khanda": [ + 129711, + "https://github.githubassets.com/images/icons/emoji/unicode/1faaf.png?v8" + ], "kick_scooter": [ 128756, "https://github.githubassets.com/images/icons/emoji/unicode/1f6f4.png?v8" @@ -4022,6 +4141,14 @@ 8617, "https://github.githubassets.com/images/icons/emoji/unicode/21a9.png?v8" ], + "leftwards_hand": [ + 129778, + "https://github.githubassets.com/images/icons/emoji/unicode/1faf2.png?v8" + ], + "leftwards_pushing_hand": [ + 129783, + "https://github.githubassets.com/images/icons/emoji/unicode/1faf7.png?v8" + ], "leg": [ 129461, "https://github.githubassets.com/images/icons/emoji/unicode/1f9b5.png?v8" @@ -4074,6 +4201,10 @@ ], "https://github.githubassets.com/images/icons/emoji/unicode/1f1f1-1f1ee.png?v8" ], + "light_blue_heart": [ + 129653, + "https://github.githubassets.com/images/icons/emoji/unicode/1fa75.png?v8" + ], "light_rail": [ 128648, "https://github.githubassets.com/images/icons/emoji/unicode/1f688.png?v8" @@ -4137,6 +4268,10 @@ 129524, "https://github.githubassets.com/images/icons/emoji/unicode/1f9f4.png?v8" ], + "lotus": [ + 129719, + "https://github.githubassets.com/images/icons/emoji/unicode/1fab7.png?v8" + ], "lotus_position": [ 129496, "https://github.githubassets.com/images/icons/emoji/unicode/1f9d8.png?v8" @@ -4175,6 +4310,10 @@ 129311, "https://github.githubassets.com/images/icons/emoji/unicode/1f91f.png?v8" ], + "low_battery": [ + 129707, + "https://github.githubassets.com/images/icons/emoji/unicode/1faab.png?v8" + ], "low_brightness": [ 128261, "https://github.githubassets.com/images/icons/emoji/unicode/1f505.png?v8" @@ -4573,6 +4712,10 @@ 127809, "https://github.githubassets.com/images/icons/emoji/unicode/1f341.png?v8" ], + "maracas": [ + 129671, + "https://github.githubassets.com/images/icons/emoji/unicode/1fa87.png?v8" + ], "marshall_islands": [ [ 127474, @@ -4677,6 +4820,10 @@ 127816, "https://github.githubassets.com/images/icons/emoji/unicode/1f348.png?v8" ], + "melting_face": [ + 129760, + "https://github.githubassets.com/images/icons/emoji/unicode/1fae0.png?v8" + ], "memo": [ 128221, "https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png?v8" @@ -4783,6 +4930,10 @@ 129694, "https://github.githubassets.com/images/icons/emoji/unicode/1fa9e.png?v8" ], + "mirror_ball": [ + 129705, + "https://github.githubassets.com/images/icons/emoji/unicode/1faa9.png?v8" + ], "mobile_phone_off": [ 128244, "https://github.githubassets.com/images/icons/emoji/unicode/1f4f4.png?v8" @@ -4858,6 +5009,10 @@ 129390, "https://github.githubassets.com/images/icons/emoji/unicode/1f96e.png?v8" ], + "moose": [ + 129742, + "https://github.githubassets.com/images/icons/emoji/unicode/1face.png?v8" + ], "morocco": [ [ 127474, @@ -5057,6 +5212,10 @@ 129299, "https://github.githubassets.com/images/icons/emoji/unicode/1f913.png?v8" ], + "nest_with_eggs": [ + 129722, + "https://github.githubassets.com/images/icons/emoji/unicode/1faba.png?v8" + ], "nesting_dolls": [ 129670, "https://github.githubassets.com/images/icons/emoji/unicode/1fa86.png?v8" @@ -5513,10 +5672,18 @@ ], "https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1f8.png?v8" ], + "palm_down_hand": [ + 129779, + "https://github.githubassets.com/images/icons/emoji/unicode/1faf3.png?v8" + ], "palm_tree": [ 127796, "https://github.githubassets.com/images/icons/emoji/unicode/1f334.png?v8" ], + "palm_up_hand": [ + 129780, + "https://github.githubassets.com/images/icons/emoji/unicode/1faf4.png?v8" + ], "palms_up_together": [ 129330, "https://github.githubassets.com/images/icons/emoji/unicode/1f932.png?v8" @@ -5602,6 +5769,10 @@ 128062, "https://github.githubassets.com/images/icons/emoji/unicode/1f43e.png?v8" ], + "pea_pod": [ + 129755, + "https://github.githubassets.com/images/icons/emoji/unicode/1fadb.png?v8" + ], "peace_symbol": [ 9774, "https://github.githubassets.com/images/icons/emoji/unicode/262e.png?v8" @@ -5711,6 +5882,10 @@ ], "https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f9b3.png?v8" ], + "person_with_crown": [ + 129733, + "https://github.githubassets.com/images/icons/emoji/unicode/1fac5.png?v8" + ], "person_with_probing_cane": [ [ 129489, @@ -5803,6 +5978,10 @@ 127955, "https://github.githubassets.com/images/icons/emoji/unicode/1f3d3.png?v8" ], + "pink_heart": [ + 129655, + "https://github.githubassets.com/images/icons/emoji/unicode/1fa77.png?v8" + ], "pirate_flag": [ [ 127988, @@ -5841,6 +6020,10 @@ 9199, "https://github.githubassets.com/images/icons/emoji/unicode/23ef.png?v8" ], + "playground_slide": [ + 128733, + "https://github.githubassets.com/images/icons/emoji/unicode/1f6dd.png?v8" + ], "pleading_face": [ 129402, "https://github.githubassets.com/images/icons/emoji/unicode/1f97a.png?v8" @@ -5960,6 +6143,10 @@ 128183, "https://github.githubassets.com/images/icons/emoji/unicode/1f4b7.png?v8" ], + "pouring_liquid": [ + 129751, + "https://github.githubassets.com/images/icons/emoji/unicode/1fad7.png?v8" + ], "pout": [ 128545, "https://github.githubassets.com/images/icons/emoji/unicode/1f621.png?v8" @@ -5994,6 +6181,14 @@ 128255, "https://github.githubassets.com/images/icons/emoji/unicode/1f4ff.png?v8" ], + "pregnant_man": [ + 129731, + "https://github.githubassets.com/images/icons/emoji/unicode/1fac3.png?v8" + ], + "pregnant_person": [ + 129732, + "https://github.githubassets.com/images/icons/emoji/unicode/1fac4.png?v8" + ], "pregnant_woman": [ 129328, "https://github.githubassets.com/images/icons/emoji/unicode/1f930.png?v8" @@ -6294,10 +6489,22 @@ 128495, "https://github.githubassets.com/images/icons/emoji/unicode/1f5ef.png?v8" ], + "rightwards_hand": [ + 129777, + "https://github.githubassets.com/images/icons/emoji/unicode/1faf1.png?v8" + ], + "rightwards_pushing_hand": [ + 129784, + "https://github.githubassets.com/images/icons/emoji/unicode/1faf8.png?v8" + ], "ring": [ 128141, "https://github.githubassets.com/images/icons/emoji/unicode/1f48d.png?v8" ], + "ring_buoy": [ + 128735, + "https://github.githubassets.com/images/icons/emoji/unicode/1f6df.png?v8" + ], "ringed_planet": [ 129680, "https://github.githubassets.com/images/icons/emoji/unicode/1fa90.png?v8" @@ -6451,6 +6658,10 @@ 129474, "https://github.githubassets.com/images/icons/emoji/unicode/1f9c2.png?v8" ], + "saluting_face": [ + 129761, + "https://github.githubassets.com/images/icons/emoji/unicode/1fae1.png?v8" + ], "samoa": [ [ 127484, @@ -6653,6 +6864,10 @@ ], "https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1e8.png?v8" ], + "shaking_face": [ + 129768, + "https://github.githubassets.com/images/icons/emoji/unicode/1fae8.png?v8" + ], "shallow_pan_of_food": [ 129368, "https://github.githubassets.com/images/icons/emoji/unicode/1f958.png?v8" @@ -7778,6 +7993,10 @@ 128548, "https://github.githubassets.com/images/icons/emoji/unicode/1f624.png?v8" ], + "troll": [ + 129484, + "https://github.githubassets.com/images/icons/emoji/unicode/1f9cc.png?v8" + ], "trolleybus": [ 128654, "https://github.githubassets.com/images/icons/emoji/unicode/1f68e.png?v8" @@ -8239,6 +8458,10 @@ 128011, "https://github.githubassets.com/images/icons/emoji/unicode/1f40b.png?v8" ], + "wheel": [ + 128734, + "https://github.githubassets.com/images/icons/emoji/unicode/1f6de.png?v8" + ], "wheel_of_dharma": [ 9784, "https://github.githubassets.com/images/icons/emoji/unicode/2638.png?v8" @@ -8321,10 +8544,18 @@ 127863, "https://github.githubassets.com/images/icons/emoji/unicode/1f377.png?v8" ], + "wing": [ + 129725, + "https://github.githubassets.com/images/icons/emoji/unicode/1fabd.png?v8" + ], "wink": [ 128521, "https://github.githubassets.com/images/icons/emoji/unicode/1f609.png?v8" ], + "wireless": [ + 128732, + "https://github.githubassets.com/images/icons/emoji/unicode/1f6dc.png?v8" + ], "wolf": [ 128058, "https://github.githubassets.com/images/icons/emoji/unicode/1f43a.png?v8" @@ -8606,6 +8837,10 @@ 10060, "https://github.githubassets.com/images/icons/emoji/unicode/274c.png?v8" ], + "x_ray": [ + 129659, + "https://github.githubassets.com/images/icons/emoji/unicode/1fa7b.png?v8" + ], "yarn": [ 129526, "https://github.githubassets.com/images/icons/emoji/unicode/1f9f6.png?v8" diff --git a/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2 b/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2 index 12bf9e2..51cc963 100644 Binary files a/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2 and b/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2 differ diff --git a/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMOvWjMY.woff2 b/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMOvWjMY.woff2 index 8c7cb5e..1059d86 100644 Binary files a/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMOvWjMY.woff2 and b/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMOvWjMY.woff2 differ diff --git a/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMevWjMY.woff2 b/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMevWjMY.woff2 index 9e00d55..82b2771 100644 Binary files a/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMevWjMY.woff2 and b/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMevWjMY.woff2 differ diff --git a/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMuvWjMY.woff2 b/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMuvWjMY.woff2 index f7f2d77..959a059 100644 Binary files a/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMuvWjMY.woff2 and b/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlMuvWjMY.woff2 differ diff --git a/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlOevWjMY.woff2 b/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlOevWjMY.woff2 index ae85834..b52412f 100644 Binary files a/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlOevWjMY.woff2 and b/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlOevWjMY.woff2 differ diff --git a/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2 b/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2 index 3cb218c..92ec082 100644 Binary files a/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2 and b/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPevW.woff2 differ diff --git a/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2 b/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2 index 4f9bb2b..a15fcd8 100644 Binary files a/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2 and b/src/poxy/generated/fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2 differ diff --git a/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQ10YVJg.woff2 b/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQ10YVJg.woff2 index 4ebc985..59508dd 100644 Binary files a/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQ10YVJg.woff2 and b/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQ10YVJg.woff2 differ diff --git a/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQF0YVJg.woff2 b/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQF0YVJg.woff2 index 26e1271..ed07a34 100644 Binary files a/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQF0YVJg.woff2 and b/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQF0YVJg.woff2 differ diff --git a/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQV0YVJg.woff2 b/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQV0YVJg.woff2 index 062a556..1e0c554 100644 Binary files a/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQV0YVJg.woff2 and b/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQV0YVJg.woff2 differ diff --git a/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQl0YVJg.woff2 b/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQl0YVJg.woff2 index 59765a4..2b85b3e 100644 Binary files a/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQl0YVJg.woff2 and b/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQl0YVJg.woff2 differ diff --git a/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bSl0YVJg.woff2 b/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bSl0YVJg.woff2 index ed88deb..7cc856b 100644 Binary files a/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bSl0YVJg.woff2 and b/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bSl0YVJg.woff2 differ diff --git a/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTV0YVJg.woff2 b/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTV0YVJg.woff2 index e33ae3b..0c7688c 100644 Binary files a/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTV0YVJg.woff2 and b/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTV0YVJg.woff2 differ diff --git a/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTl0Y.woff2 b/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTl0Y.woff2 index 1f4bc2a..03b0509 100644 Binary files a/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTl0Y.woff2 and b/src/poxy/generated/fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTl0Y.woff2 differ diff --git a/src/poxy/generated/poxy.css b/src/poxy/generated/poxy.css index f105941..8c365af 100644 --- a/src/poxy/generated/poxy.css +++ b/src/poxy/generated/poxy.css @@ -51,7 +51,7 @@ font-family: 'Source Code Pro'; font-style: italic; font-weight: 400; src: url('fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bTV0YVJg.woff2') format('woff2'); -unicode-range: U+0370-03FF; +unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } @font-face { font-family: 'Source Code Pro'; @@ -65,7 +65,7 @@ font-family: 'Source Code Pro'; font-style: italic; font-weight: 400; src: url('fonts/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1bQF0YVJg.woff2') format('woff2'); -unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } @font-face { font-family: 'Source Code Pro'; @@ -100,7 +100,7 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 400; src: url('fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2') format('woff2'); -unicode-range: U+0370-03FF; +unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } @font-face { font-family: 'Source Code Pro'; @@ -114,7 +114,7 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 400; src: url('fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2') format('woff2'); -unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } @font-face { font-family: 'Source Code Pro'; @@ -149,7 +149,7 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 600; src: url('fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlPuvWjMY.woff2') format('woff2'); -unicode-range: U+0370-03FF; +unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } @font-face { font-family: 'Source Code Pro'; @@ -163,7 +163,7 @@ font-family: 'Source Code Pro'; font-style: normal; font-weight: 600; src: url('fonts/HI_SiYsKILxRpg3hIP6sJ7fM7PqlM-vWjMY.woff2') format('woff2'); -unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } @font-face { font-family: 'Source Code Pro'; @@ -198,7 +198,7 @@ font-family: 'Source Sans Pro'; font-style: italic; font-weight: 400; src: url('fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2') format('woff2'); -unicode-range: U+0370-03FF; +unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } @font-face { font-family: 'Source Sans Pro'; @@ -212,7 +212,7 @@ font-family: 'Source Sans Pro'; font-style: italic; font-weight: 400; src: url('fonts/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2') format('woff2'); -unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } @font-face { font-family: 'Source Sans Pro'; @@ -247,7 +247,7 @@ font-family: 'Source Sans Pro'; font-style: italic; font-weight: 600; src: url('fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdv18Smxg.woff2') format('woff2'); -unicode-range: U+0370-03FF; +unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } @font-face { font-family: 'Source Sans Pro'; @@ -261,7 +261,7 @@ font-family: 'Source Sans Pro'; font-style: italic; font-weight: 600; src: url('fonts/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdi18Smxg.woff2') format('woff2'); -unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } @font-face { font-family: 'Source Sans Pro'; @@ -296,7 +296,7 @@ font-family: 'Source Sans Pro'; font-style: normal; font-weight: 400; src: url('fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2') format('woff2'); -unicode-range: U+0370-03FF; +unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } @font-face { font-family: 'Source Sans Pro'; @@ -310,7 +310,7 @@ font-family: 'Source Sans Pro'; font-style: normal; font-weight: 400; src: url('fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2') format('woff2'); -unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } @font-face { font-family: 'Source Sans Pro'; @@ -345,7 +345,7 @@ font-family: 'Source Sans Pro'; font-style: normal; font-weight: 600; src: url('fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlBduz8A.woff2') format('woff2'); -unicode-range: U+0370-03FF; +unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; } @font-face { font-family: 'Source Sans Pro'; @@ -359,7 +359,7 @@ font-family: 'Source Sans Pro'; font-style: normal; font-weight: 600; src: url('fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRduz8A.woff2') format('woff2'); -unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; } @font-face { font-family: 'Source Sans Pro'; @@ -631,7 +631,7 @@ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+ --dim-link-color: #292929; --dim-link-active-color: hsl(var(--dim-hue), var(--dim-saturation), calc(var(--dim-luminosity) * 0.7)); --dim-filled-color: #656565; ---dim-filled-background-color: #c5c4c4; +--dim-filled-background-color: #d3d3d3; --dim-filled-link-color: #292929; --dim-filled-link-active-color: #7c7c7c; --dim-button-active-color: #292929; @@ -1103,10 +1103,13 @@ table.m-table th.m-info pre, table.m-table th.m-info code, table.m-table tr.m-dim pre, table.m-table tr.m-dim code, table.m-table td.m-dim pre, table.m-table td.m-dim code, table.m-table th.m-dim pre, table.m-table th.m-dim code { background-color: var(--code-note-background-color); } -img.m-image, svg.m-image { display: block; margin-left: auto; margin-right: auto; } +img.m-image, svg.m-image, video.m-image { display: block; margin-left: auto; margin-right: auto; } div.m-image { text-align: center; } -img.m-image, svg.m-image, div.m-image img, div.m-image svg { max-width: 100%; border-radius: var(--border-radius); } -div.m-image.m-fullwidth img, div.m-image.m-fullwidth svg { width: 100%; } +img.m-image, svg.m-image, video.m-image, +div.m-image img, div.m-image svg, div.m-image video { max-width: 100%; border-radius: var(--border-radius); } +div.m-image.m-fullwidth img, +div.m-image.m-fullwidth svg, +div.m-image.m-fullwidth video { width: 100%; } img.m-image.m-badge, div.m-image.m-badge img { border-radius: 50%; } figure.m-figure { max-width: 100%; @@ -1133,7 +1136,9 @@ figure.m-figure.m-flat::before { border-color: transparent; } figure.m-figure > * { margin-left: 1rem; margin-right: 1rem; display: table-caption; caption-side: bottom; } figure.m-figure > *:first-child { display: inline; } figure.m-figure > *:last-child { margin-bottom: 1rem !important; } -figure.m-figure img, figure.m-figure svg { +figure.m-figure img, +figure.m-figure svg, +figure.m-figure video { position: relative; margin-left: 0; margin-right: 0; @@ -1142,11 +1147,17 @@ border-top-left-radius: var(--border-radius); border-top-right-radius: var(--border-radius); max-width: 100%; } -figure.m-figure.m-flat img, figure.m-figure.m-flat svg { border-bottom-left-radius: var(--border-radius); border-bottom-right-radius: var(--border-radius); } -figure.m-figure a img, figure.m-figure a svg { margin-left: -1rem; margin-right: -1rem; } +figure.m-figure.m-flat img, +figure.m-figure.m-flat svg, +figure.m-figure.m-flat video { border-bottom-left-radius: var(--border-radius); border-bottom-right-radius: var(--border-radius); } +figure.m-figure a img, +figure.m-figure a svg, +figure.m-figure a video { margin-left: -1rem; margin-right: -1rem; } figure.m-figure.m-fullwidth, figure.m-figure.m-fullwidth > * { display: block; } figure.m-figure.m-fullwidth > *:first-child { display: inline; } -figure.m-figure.m-fullwidth img, figure.m-figure.m-fullwidth svg { width: 100%; } +figure.m-figure.m-fullwidth img, +figure.m-figure.m-fullwidth svg, +figure.m-figure.m-fullwidth video { width: 100%; } figure.m-figure.m-fullwidth::after { content: ' '; display: block; margin-top: 1rem; height: 1px; } .m-code-figure, .m-console-figure { margin-top: 0; margin-left: 0; margin-right: 0; position: relative; padding: 1rem; } .m-code-figure::before, .m-console-figure::before { diff --git a/src/poxy/mcss/css/m-components.css b/src/poxy/mcss/css/m-components.css index e90e1cd..7aac3c5 100644 --- a/src/poxy/mcss/css/m-components.css +++ b/src/poxy/mcss/css/m-components.css @@ -489,8 +489,8 @@ table.m-table th.m-dim pre, table.m-table th.m-dim code { background-color: var(--code-note-background-color); } -/* Image. Ensure everything is done for both and . */ -img.m-image, svg.m-image { +/* Image. Ensure everything is done for , and and . */ +/* Figure. Ensure everything is done for , and

Public static variables

Public static functions

- static auto public_static_function() -> struct_1 constexpr + static auto public_static_function() →  struct_1 constexpr
A public static function.
@@ -112,7 +112,7 @@

Public static functions

Public functions

- auto public_function() -> bool + auto public_function() →  bool
A public function.
@@ -139,7 +139,7 @@

Protected types

Protected static functions

- static auto protected_static_function() -> bool constexpr + static auto protected_static_function() →  bool constexpr
A protected static function.
@@ -148,7 +148,7 @@

Protected static functions

Protected functions

- auto protected_function() -> bool + auto protected_function() →  bool
A protected function.
diff --git a/tests/test_project/expected_html/code_8h.html b/tests/test_project/expected_html/code_8h.html index 2b376d0..c71c139 100644 --- a/tests/test_project/expected_html/code_8h.html +++ b/tests/test_project/expected_html/code_8h.html @@ -173,15 +173,15 @@

Functions

A function with a deduced return type.
template <typename T, typename U>
- auto do_the_other_thing(U u) -> T constexpr noexcept + auto do_the_other_thing(U u) →  T constexpr noexcept
A function template.
- auto do_the_thing() -> std::uint8_t + auto do_the_thing() →  std::uint8_t
A function.
- auto do_the_thing_automatically() -> int + auto do_the_thing_automatically() →  int
A function with a trailing return type.
diff --git a/tests/test_project/expected_html/namespacetest.html b/tests/test_project/expected_html/namespacetest.html index 18cac6e..ddaf3e8 100644 --- a/tests/test_project/expected_html/namespacetest.html +++ b/tests/test_project/expected_html/namespacetest.html @@ -199,15 +199,15 @@

Functions

A function with a deduced return type.
template <typename T, typename U>
- auto do_the_other_thing(U u) -> T constexpr noexcept + auto do_the_other_thing(U u) →  T constexpr noexcept
A function template.
- auto do_the_thing() -> std::uint8_t + auto do_the_thing() →  std::uint8_t
A function.
- auto do_the_thing_automatically() -> int + auto do_the_thing_automatically() →  int
A function with a trailing return type.