diff options
| author | Carsten Schoenert <c.schoenert@t-online.de> | 2026-06-01 21:26:36 +0200 |
|---|---|---|
| committer | git-ubuntu importer <ubuntu-devel-discuss@lists.ubuntu.com> | 2026-06-02 04:46:43 +0000 |
| commit | fe738b603b9b775c634ef159dfefb492f8a43125 (patch) | |
| tree | d70301d391fbb98a300012ac7aca2071fb0647b1 | |
| parent | 34b4d631b383d3a9208e490b98fa75ce2f207753 (diff) | |
0.6.0-1 (patches unapplied)HEADimport/0.6.0-1ubuntu/stonking-proposedubuntu/stonking-develubuntu/stonkingubuntu/develdebian/sid
Imported using git-ubuntu import.
Notes
Notes:
* Team upload
* [4e9ce14] New upstream version 0.6.0
* [8957858] d/control: s/python3-cssutils/python3-tinycss2
* [4f5ee86] autopkgest: Adjust needed packages for tests
217 files changed, 2936 insertions, 342 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 072f612..12da915 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.0 +current_version = 0.6.0 commit = True tag = True diff --git a/.github/workflows/docs_test_action.yml b/.github/workflows/docs_test_action.yml index c83ef0f..f47c729 100644 --- a/.github/workflows/docs_test_action.yml +++ b/.github/workflows/docs_test_action.yml @@ -19,7 +19,7 @@ jobs: uses: "actions/checkout@v6" - name: Check for changed files - uses: dorny/paths-filter@v2 + uses: dorny/paths-filter@v4 id: changes with: list-files: "json" diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index 8296b42..1f5be86 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -22,7 +22,7 @@ jobs: uses: "actions/checkout@v6" - name: Check for changed files - uses: dorny/paths-filter@v2 + uses: dorny/paths-filter@v4 id: changes with: list-files: "json" diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 4b27c5d..2b5e4f8 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -27,7 +27,7 @@ jobs: uses: "actions/checkout@v6" - name: Check for changed files - uses: dorny/paths-filter@v2 + uses: dorny/paths-filter@v4 id: changes with: list-files: "json" diff --git a/.github/workflows/python_ci.yml b/.github/workflows/python_ci.yml index 9289cc0..6b1de1c 100644 --- a/.github/workflows/python_ci.yml +++ b/.github/workflows/python_ci.yml @@ -20,20 +20,18 @@ jobs: runs-on: "windows-2022" continue-on-error: ${{ matrix.config.experimental }} env: - USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.7,pypy-3.8,pypy-3.9' + USING_COVERAGE: '3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.8,pypy-3.9' strategy: fail-fast: False matrix: config: - - {python-version: "3.7", testenvs: "py37,build", experimental: False} - {python-version: "3.8", testenvs: "py38,build", experimental: False} - {python-version: "3.9", testenvs: "py39,build", experimental: False} - {python-version: "3.10", testenvs: "py310,build", experimental: False} - {python-version: "3.11", testenvs: "py311,build", experimental: False} - {python-version: "3.12", testenvs: "py312,build", experimental: False} - {python-version: "3.13", testenvs: "py313,build", experimental: False} - - {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False} - {python-version: "pypy-3.8", testenvs: "pypy38", experimental: False} - {python-version: "pypy-3.9-v7.3.16", testenvs: "pypy39", experimental: True} @@ -43,7 +41,7 @@ jobs: - name: Check for changed files if: startsWith(github.ref, 'refs/tags/') != true - uses: dorny/paths-filter@v2 + uses: dorny/paths-filter@v4 id: changes with: list-files: "json" diff --git a/.github/workflows/python_ci_linux.yml b/.github/workflows/python_ci_linux.yml index 2fb19d7..3607b5f 100644 --- a/.github/workflows/python_ci_linux.yml +++ b/.github/workflows/python_ci_linux.yml @@ -21,20 +21,18 @@ jobs: runs-on: "ubuntu-22.04" continue-on-error: ${{ matrix.config.experimental }} env: - USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.7,pypy-3.8,pypy-3.9' + USING_COVERAGE: '3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.8,pypy-3.9' strategy: fail-fast: False matrix: config: - - {python-version: "3.7", testenvs: "py37,build", experimental: False} - {python-version: "3.8", testenvs: "py38,build", experimental: False} - {python-version: "3.9", testenvs: "py39,build", experimental: False} - {python-version: "3.10", testenvs: "py310,build", experimental: False} - {python-version: "3.11", testenvs: "py311,build", experimental: False} - {python-version: "3.12", testenvs: "py312,build", experimental: False} - {python-version: "3.13", testenvs: "py313,build", experimental: False} - - {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False} - {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False} - {python-version: "pypy-3.9", testenvs: "pypy39", experimental: True} @@ -44,7 +42,7 @@ jobs: - name: Check for changed files if: startsWith(github.ref, 'refs/tags/') != true - uses: dorny/paths-filter@v2 + uses: dorny/paths-filter@v4 id: changes with: list-files: "json" diff --git a/.github/workflows/python_ci_macos.yml b/.github/workflows/python_ci_macos.yml index dcd304f..a781321 100644 --- a/.github/workflows/python_ci_macos.yml +++ b/.github/workflows/python_ci_macos.yml @@ -20,20 +20,18 @@ jobs: runs-on: "macos-${{ matrix.config.os-ver }}" continue-on-error: ${{ matrix.config.experimental }} env: - USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.7,pypy-3.8,pypy-3.9' + USING_COVERAGE: '3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.8,pypy-3.9' strategy: fail-fast: False matrix: config: - - {python-version: "3.7", os-ver: "15-intel", testenvs: "py37,build", experimental: False} - {python-version: "3.8", os-ver: "14", testenvs: "py38,build", experimental: False} - {python-version: "3.9", os-ver: "14", testenvs: "py39,build", experimental: False} - {python-version: "3.10", os-ver: "14", testenvs: "py310,build", experimental: False} - {python-version: "3.11", os-ver: "14", testenvs: "py311,build", experimental: False} - {python-version: "3.12", os-ver: "14", testenvs: "py312,build", experimental: False} - {python-version: "3.13", os-ver: "14", testenvs: "py313,build", experimental: False} - - {python-version: "pypy-3.7", os-ver: "15-intel", testenvs: "pypy37,build", experimental: False} - {python-version: "pypy-3.8", os-ver: "14", testenvs: "pypy38,build", experimental: False} - {python-version: "pypy-3.9", os-ver: "14", testenvs: "pypy39", experimental: True} @@ -43,7 +41,7 @@ jobs: - name: Check for changed files if: startsWith(github.ref, 'refs/tags/') != true - uses: dorny/paths-filter@v2 + uses: dorny/paths-filter@v4 id: changes with: list-files: "json" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9b89220..3bce71d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -48,7 +48,7 @@ repos: - id: bind-requirements args: - --python-min - - '3.7' + - '3.8' - repo: https://github.com/python-formate/flake8-dunder-all rev: v0.5.0 @@ -74,7 +74,7 @@ repos: hooks: - id: pyupgrade args: - - --py37-plus + - --py38-plus - --keep-runtime-typing - repo: https://github.com/Lucas-C/pre-commit-hooks @@ -101,7 +101,7 @@ dict2css .. |language| image:: https://img.shields.io/github/languages/top/sphinx-toolbox/dict2css :alt: GitHub top language -.. |commits-since| image:: https://img.shields.io/github/commits-since/sphinx-toolbox/dict2css/v0.4.0 +.. |commits-since| image:: https://img.shields.io/github/commits-since/sphinx-toolbox/dict2css/v0.6.0 :target: https://github.com/sphinx-toolbox/dict2css/pulse :alt: GitHub commits since tagged version diff --git a/debian/changelog b/debian/changelog index a139147..c332775 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +python-dict2css (0.6.0-1) unstable; urgency=medium + + * Team upload + * [4e9ce14] New upstream version 0.6.0 + * [8957858] d/control: s/python3-cssutils/python3-tinycss2 + * [4f5ee86] autopkgest: Adjust needed packages for tests + + -- Carsten Schoenert <c.schoenert@t-online.de> Mon, 01 Jun 2026 21:26:36 +0200 + python-dict2css (0.4.0-1) unstable; urgency=medium * Team upload diff --git a/debian/control b/debian/control index 60f6cf9..cb57432 100644 --- a/debian/control +++ b/debian/control @@ -10,8 +10,8 @@ Build-Depends: python3-all, python3-coincidence <!nocheck>, python3-css-parser <!nocheck>, - python3-cssutils <!nocheck>, python3-pytest <!nocheck>, + python3-tinycss2 <!nocheck>, python3-setuptools, python3-whey, Standards-Version: 4.7.4 diff --git a/debian/tests/control b/debian/tests/control index 9fa7b6d..40df1ae 100644 --- a/debian/tests/control +++ b/debian/tests/control @@ -4,7 +4,7 @@ Depends: python3-all, python3-coincidence, python3-css-parser, - python3-cssutils, python3-pytest, + python3-tinycss2, @, Restrictions: allow-stderr diff --git a/dict2css/__init__.py b/dict2css/__init__.py index 3ad1289..ab099dd 100644 --- a/dict2css/__init__.py +++ b/dict2css/__init__.py @@ -3,9 +3,6 @@ # __init__.py """ A μ-library for constructing cascasing style sheets from Python dictionaries. - -.. latex:vspace:: 10px -.. seealso:: `css-parser <https://github.com/ebook-utils/css-parser>`_, which this library builds upon. """ # # Copyright © 2020-2021 Dominic Davis-Foster <dominic@davis-foster.co.uk> @@ -31,27 +28,23 @@ A μ-library for constructing cascasing style sheets from Python dictionaries. # stdlib from io import TextIOBase -from typing import IO, Any, Dict, Mapping, MutableMapping, Sequence, Union, cast +from typing import IO, Any, Dict, Iterable, List, Literal, Mapping, MutableMapping, Optional, Sequence, Union # 3rd party +import tinycss2 # type: ignore[import-untyped] +import tinycss2.ast # type: ignore[import-untyped] from domdf_python_tools.paths import PathPlus from domdf_python_tools.typing import PathLike from domdf_python_tools.words import TAB -try: - # 3rd party - import css_parser # type: ignore -except ImportError: # pragma: no cover - import cssutils as css_parser # type: ignore - # this package from dict2css.helpers import em, px, rem # noqa: F401 from dict2css.serializer import CSSSerializer __author__: str = "Dominic Davis-Foster" -__copyright__: str = "2020-2021 Dominic Davis-Foster" +__copyright__: str = "2020-2026 Dominic Davis-Foster" __license__: str = "MIT License" -__version__: str = "0.4.0" +__version__: str = "0.6.0" __email__: str = "dominic@davis-foster.co.uk" __all__ = [ @@ -61,10 +54,10 @@ __all__ = [ "dump", "loads", "load", - "StyleSheet", - "make_style", ] +# TODO: allow int indent like json.dumps etc. + IMPORTANT = "important" """ The string ``'important'``. @@ -73,11 +66,11 @@ The string ``'important'``. """ # Property = Union[Tuple[Union[str, int, None], str], str, int, None] -Property = Union[Sequence, str, int, None] +Property = Union[Sequence, str, int, float, None] Style = Mapping[str, Property] """ -Type annotation representing a style for :func:`~.make_style` and :func:`~.dumps`. +Type annotation representing a style for :func:`~.dumps` and :func:`~.dump`. The keys are CSS properties. @@ -93,9 +86,12 @@ def dumps( styles: Mapping[str, Union[Style, Mapping]], *, indent: str = TAB, - trailing_semicolon: bool = False, + trailing_semicolon: Optional[bool] = False, indent_closing_brace: bool = False, minify: bool = False, + sort_keys: bool = False, + check_circular: bool = True, + none_style: Union[Literal["none"], Literal["None"]] = "none", ) -> str: r""" Construct a cascading style sheet from a dictionary. @@ -139,38 +135,33 @@ def dumps( :param trailing_semicolon: Whether to add a semicolon to the end of the final property. :param indent_closing_brace: :param minify: Minify the CSS. Overrides all other options. + :param sort_keys: Sort dictionary keys alphabetically. + :param check_circular: Check for circular references. + :param none_style: Whether to represent :py:obj:`None` as ``None`` or ``none``. :return: The style sheet as a string. .. versionchanged:: 0.2.0 Added support for media at-rules. - """ + .. versionchanged:: 0.5.0 New implementation. Output may differ slightly from previous css-parser based one. + .. versionchanged:: 0.6.0 Added ``none_style`` option. + """ # noqa: SXL001 serializer = CSSSerializer( indent=indent, trailing_semicolon=trailing_semicolon, indent_closing_brace=indent_closing_brace, minify=minify, + sort_keys=sort_keys, + check_circular=check_circular, + none_style=none_style, ) - stylesheet: str = '' - - with serializer.use(): - sheet = StyleSheet() - - for selector, style in styles.items(): - if selector.startswith("@media"): - sheet.add_media_styles(selector.split("@media")[1].strip(), cast(Mapping[str, Style], style)) - elif selector.startswith('@'): - raise NotImplementedError("Only @media at-rules are supported at this time.") - else: - sheet.add_style(selector, cast(Style, style)) - - stylesheet = sheet.tostring() + css = serializer.encode(styles).rstrip() - if not serializer.minify: - stylesheet = stylesheet.replace('}', "}\n") - - return stylesheet + if css: + return css + '\n' + else: + return '' def dump( @@ -178,9 +169,12 @@ def dump( fp: Union[PathLike, IO], *, indent: str = TAB, - trailing_semicolon: bool = False, + trailing_semicolon: Optional[bool] = False, indent_closing_brace: bool = False, minify: bool = False, + sort_keys: bool = False, + check_circular: bool = True, + none_style: Union[Literal["none"], Literal["None"]] = "none", ) -> None: r""" Construct a style sheet from a dictionary and write it to ``fp``. @@ -225,20 +219,29 @@ def dump( :param trailing_semicolon: Whether to add a semicolon to the end of the final property. :param indent_closing_brace: :param minify: Minify the CSS. Overrides all other options. + :param sort_keys: Sort dictionary keys alphabetically. + :param check_circular: Check for circular references. + :param none_style: Whether to represent :py:obj:`None` as ``None`` or ``none``. .. versionchanged:: 0.2.0 * ``fp`` now accepts :py:obj:`domdf_python_tools.typing.PathLike` objects, representing the path of a file to write to. * Added support for media at-rules. - """ + + .. versionchanged:: 0.5.0 New implementation. Output may differ slightly from previous css-parser based one. + .. versionchanged:: 0.6.0 Added ``none_style`` option. + """ # noqa: SXL001 css = dumps( styles, indent=indent, trailing_semicolon=trailing_semicolon, indent_closing_brace=indent_closing_brace, + sort_keys=sort_keys, + check_circular=check_circular, minify=minify, + none_style=none_style, ) if isinstance(fp, TextIOBase): @@ -252,43 +255,44 @@ def loads(styles: str) -> MutableMapping[str, MutableMapping[str, Any]]: Parse a style sheet and return its dictionary representation. .. versionadded:: 0.2.0 + .. versionchanged:: 0.5.0 New implementation. Output may differ slightly from previous css-parser based one. :param styles: :return: The style sheet as a dictionary. + + .. latex:clearpage:: """ - parser = css_parser.CSSParser(validate=False) - stylesheet: css_parser.css.CSSStyleSheet = parser.parseString(styles) + stylesheet = tinycss2.parse_blocks_contents(styles, skip_comments=True, skip_whitespace=True) styles_dict: MutableMapping[str, MutableMapping[str, Any]] = {} - def parse_style(style: css_parser.css.CSSStyleDeclaration) -> MutableMapping[str, Property]: + def parse_style(style: List[tinycss2.ast.Node]) -> MutableMapping[str, Property]: style_dict: Dict[str, Property] = {} - prop: css_parser.css.Property - for prop in style.children(): - if prop.priority: - style_dict[prop.name] = (prop.value, prop.priority) + prop: Union[tinycss2.ast.ParseError, tinycss2.ast.Declaration] + for prop in tinycss2.parse_declaration_list(style, skip_comments=True, skip_whitespace=True): + if isinstance(prop, tinycss2.ast.ParseError): + raise ValueError(prop) + + if prop.important: + style_dict[prop.name.strip()] = (_serialize(prop.value), IMPORTANT) else: - style_dict[prop.name] = prop.value + style_dict[prop.name.strip()] = _serialize(prop.value) return style_dict - rule: css_parser.css.CSSRule - for rule in stylesheet.cssRules: - if isinstance(rule, css_parser.css.CSSStyleRule): - styles_dict[rule.selectorText] = parse_style(rule.style) + rule: tinycss2.ast.Node + for rule in stylesheet: + if isinstance(rule, tinycss2.ast.QualifiedRule): + styles_dict[_serialize(rule.prelude)] = parse_style(rule.content) - elif isinstance(rule, css_parser.css.CSSMediaRule): - styles_dict[f"@media {rule.media.mediaText}"] = {} + elif isinstance(rule, tinycss2.ast.AtRule): + at_rule_styles = styles_dict[f"@{rule.at_keyword} {_serialize(rule.prelude)}"] = {} - for child in rule.cssRules: - styles_dict[f"@media {rule.media.mediaText}"][child.selectorText] = parse_style(child.style) - - elif isinstance(rule, (css_parser.css.CSSComment)): # pragma: no cover - # Ignore these classes - pass + for child in tinycss2.parse_blocks_contents(rule.content, skip_comments=True, skip_whitespace=True): + at_rule_styles[_serialize(child.prelude)] = parse_style(child.content) else: raise NotImplementedError(rule) @@ -296,11 +300,16 @@ def loads(styles: str) -> MutableMapping[str, MutableMapping[str, Any]]: return styles_dict +def _serialize(nodes: Iterable[tinycss2.ast.Node]) -> str: + return tinycss2.serialize(nodes).strip() + + def load(fp: Union[PathLike, IO]) -> MutableMapping[str, MutableMapping[str, Any]]: r""" Parse a cascading style sheet from the given file and return its dictionary representation. .. versionadded:: 0.2.0 + .. versionchanged:: 0.5.0 New implementation. Output may differ slightly from previous css-parser based one. :param fp: An open file handle, or the filename of a file to write to. @@ -313,93 +322,3 @@ def load(fp: Union[PathLike, IO]) -> MutableMapping[str, MutableMapping[str, Any styles = PathPlus(fp).read_text() return loads(styles) - - -class StyleSheet(css_parser.css.CSSStyleSheet): - r""" - Represents a CSS style sheet. - - .. raw:: latex - - \nopagebreak - - .. autosummary-widths:: 7/16 - - """ - - def __init__(self): - super().__init__(validating=False) - - def add(self, rule: css_parser.css.CSSRule) -> int: - """ - Add the ``rule`` to the style sheet. - - :param rule: - :type rule: :class:`css_parser.css.CSSRule` - """ - - return super().add(rule) - - def add_style( - self, - selector: str, - styles: Style, - ) -> None: - """ - Add a style to the style sheet. - - :param selector: - :param styles: - """ - - self.add(make_style(selector, styles)) - - def add_media_styles( - self, - media_query: str, - styles: Mapping[str, Style], - ) -> None: - """ - Add a set of styles for a media query to the style sheet. - - .. versionadded:: 0.2.0 - - :param media_query: - :param styles: - """ - - media = css_parser.css.CSSMediaRule(media_query) - - for selector, style in styles.items(): - media.add(make_style(selector, style)) - - self.add(media) - - def tostring(self) -> str: - """ - Returns the style sheet as a string. - """ - - return self.cssText.decode("UTF-8") - - -def make_style(selector: str, styles: Style) -> css_parser.css.CSSStyleRule: - """ - Create a CSS Style Rule from a dictionary. - - :param selector: - :param styles: - - :rtype: :class:`css_parser.css.CSSStyleRule` - """ - - style = css_parser.css.CSSStyleDeclaration() - style.validating = False - - for name, properties in styles.items(): - if isinstance(properties, Sequence) and not isinstance(properties, str): - style[name] = tuple(str(x) for x in properties) - else: - style[name] = str(properties) - - return css_parser.css.CSSStyleRule(selectorText=selector, style=style) diff --git a/dict2css/serializer.py b/dict2css/serializer.py index d904228..8568786 100644 --- a/dict2css/serializer.py +++ b/dict2css/serializer.py @@ -9,6 +9,9 @@ Serializer for cascading style sheets. # # Copyright © 2021 Dominic Davis-Foster <dominic@davis-foster.co.uk> # +# Adapted from https://github.com/austinyu/ujson5 +# Copyright (c) 2025 Sir Austin +# # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights @@ -29,25 +32,46 @@ Serializer for cascading style sheets. # # stdlib +import re from contextlib import contextmanager -from typing import Iterator +from typing import Any, Callable, Dict, Iterable, Iterator, Literal, Mapping, Optional, Union # 3rd party from domdf_python_tools.words import TAB -try: - # 3rd party - import css_parser # type: ignore -except ImportError: # pragma: no cover - # 3rd party - import cssutils as css_parser # type: ignore - __all__ = ["CSSSerializer"] +#: Python objects that can be serialized to CSS +Serializable = Union[dict, list, tuple, int, float, str, bool, None] + +#: A callable that takes in an object that is not serializable and returns a serializable object +DefaultInterface = Union[ + Callable[[Any], dict], + Callable[[Any], list], + Callable[[Any], tuple], + Callable[[Any], int], + Callable[[Any], float], + Callable[[Any], str], + Callable[[Any], bool], + Callable[[Any], Serializable] + ] -class CSSSerializer(css_parser.CSSSerializer): +ESCAPE = re.compile(r'[\x00-\x1f\\\b\f\n\r\t]') +ESCAPE_DCT = { + '\\': "\\\\", + '\x08': "\\b", + '\x0c': "\\f", + '\n': "\\n", + '\r': "\\r", + '\t': "\\t", + } +for i in range(0x20): + ESCAPE_DCT.setdefault(chr(i), f"\\u{i:04x}") + + +class CSSSerializer: r""" - Serializes a :class:`~.StyleSheet` and its parts. + Serializes a dictionary to CSS. This controls the formatting of the style sheet. @@ -55,57 +79,313 @@ class CSSSerializer(css_parser.CSSSerializer): :param trailing_semicolon: Whether to add a semicolon to the end of the final property. :param indent_closing_brace: :param minify: Minify the CSS. Overrides all other options. + :param sort_keys: Sort dictionary keys alphabetically. + :param check_circular: Check for circular references. + :param none_style: Whether to represent :py:obj:`None` as ``None`` or ``none``. + + .. versionchanged:: 0.5.0 New implementation. Output may differ slightly from previous css-parser based one. + .. versionchanged:: 0.6.0 Added ``none_style`` option. - .. autosummary-widths:: 5/16 - """ + .. autosummary-widths:: 1/4 + """ # noqa: SXL001 def __init__( self, *, indent: str = TAB, - trailing_semicolon: bool = False, + trailing_semicolon: Optional[bool] = None, + indent_closing_brace: bool = False, + minify: bool = False, + sort_keys: bool = False, + check_circular: bool = True, # default: Optional[DefaultInterface] = None, + none_style: Union[Literal["none"], Literal["None"]] = "none", + ) -> None: + self._set_options( + indent=indent, + trailing_semicolon=trailing_semicolon, + indent_closing_brace=indent_closing_brace, + minify=minify, + sort_keys=sort_keys, + none_style=none_style, + ) + + if check_circular: + self._markers: Optional[Dict[int, Any]] = {} + else: + self._markers = None + + # TODO self._default: Optional[DefaultInterface] = default + self._default: Optional[DefaultInterface] = None + + def _set_options( + self, + indent: str = TAB, + trailing_semicolon: Optional[bool] = None, indent_closing_brace: bool = False, minify: bool = False, - ): - super().__init__() - self.indent = str(indent) - self.trailing_semicolon = trailing_semicolon - self.indent_closing_brace = indent_closing_brace - self.minify = minify - - def reset_style(self) -> None: + sort_keys: bool = False, + none_style: Union[Literal["none"], Literal["None"]] = "none", + ) -> None: + + self._sort_keys: bool = sort_keys + self._indent_str: str = (None if minify else indent) or '' + self.none_style = none_style + + if minify: + self._key_separator: str = ':' + else: + self._key_separator = ": " + + if not indent and not minify: + self._item_separator: str = "; " + else: + self._item_separator = ';' + + if minify: + self._trailing_semicolon = False + elif trailing_semicolon is None: + self._trailing_semicolon = bool(self._indent_str) + else: + self._trailing_semicolon = trailing_semicolon + + if indent_closing_brace and indent is not None: + self._indent_closing_brace = True + else: + self._indent_closing_brace = False + + self._minify = minify + + # TODO: deprecate + def reset_style(self) -> None: # pragma: no cover """ Reset the serializer to its default style. """ - # Reset CSS Parser to defaults - self.prefs.useDefaults() + self._set_options() - if self.minify: - self.prefs.useMinified() + def encode(self, obj: Mapping) -> str: + """ + Return a CSS representation of a Python dictionary. - else: - # Formatting preferences - self.prefs.omitLastSemicolon = not self.trailing_semicolon - self.prefs.indentClosingBrace = self.indent_closing_brace - self.prefs.indent = self.indent + :param obj: The Python dictionary to be serialized - @contextmanager - def use(self) -> Iterator: + :returns: The CSS string representation of the Python dictionary + """ + + return ''.join(self.iterencode(obj)) + + def iterencode(self, obj: Mapping) -> Iterable[str]: + """ + Encode the given dictionary and yield each part of the CSS string representation. + + :param obj: The Python dictionary to be serialized + + :returns: An iterable of strings representing the CSS serialization of the Python dictionary. """ - Contextmanager to use this serializer for the scope of the ``with`` block. + + if not isinstance(obj, Mapping): + raise TypeError(f"Cannot convert {type(obj)} to CSS") + + return self._iterencode_dict(obj, indent_level=-1) + + def default(self, obj: Any) -> Serializable: """ + Override this method in a subclass to implement custom serialization for objects that are not serializable by default. + + This method should return a serializable object. + If this method is not overridden, the encoder will raise a :exc:`ValueError` when trying to encode an unsupported object. + + :param obj: The object to be serialized that is not supported by default. + + :returns: A serializable object + + :raises: ValueError: If the object cannot be serialized + """ + + if self._default is not None: # pragma no cover # TODO + return self._default(obj) + + raise ValueError(f"Object of type {obj.__class__.__name__} cannot be represented in CSS") - # if css_parser.ser is self: - # yield - # return - # - current_serializer = css_parser.ser - self.reset_style() + def _encode_float(self, obj: float) -> str: + if obj != obj or obj == float("inf") or obj == float("-inf"): + raise ValueError(f"Out of range float values are not allowed: {repr(obj)}") + else: + return repr(obj) + + def _encode_str(self, obj: str) -> str: + + def replace_unicode(match: re.Match) -> str: # pragma: no cover # TODO + return ESCAPE_DCT[match.group(0)] + + return ESCAPE.sub(replace_unicode, obj) + + def _iterencode(self, obj: Any, indent_level: int) -> Iterable[str]: + if isinstance(obj, str): + yield self._encode_str(obj) + elif obj is True: + yield "true" + elif obj is False: + yield "false" + elif obj is None: + yield self.none_style # either none (default; preferred) or None + elif isinstance(obj, int): + yield repr(obj) + elif isinstance(obj, float): + yield self._encode_float(obj) + elif isinstance(obj, (list, tuple)): # pragma: no cover # TODO (needs default exposed) + yield from self._iterencode_list(obj, indent_level) + elif isinstance(obj, dict): # pragma: no cover # TODO (needs default exposed) + yield from self._iterencode_dict(obj, indent_level) + else: + if self._markers is not None: + marker_id: Optional[int] = id(obj) + if marker_id in self._markers: # pragma: no cover # TODO (super edge case) + raise ValueError("Circular reference detected") + assert marker_id is not None + self._markers[marker_id] = obj + else: + marker_id = None + + obj_user = self.default(obj) + yield from self._iterencode(obj_user, indent_level) # pragma: no cover # TODO (needs default exposed) + + if self._markers is not None and marker_id is not None: # pragma: no cover # TODO (needs default exposed) + del self._markers[marker_id] + + def _iterencode_list( + self, + obj: Union[list, tuple, None], + indent_level: int, + ) -> Iterable[str]: + + # this package + from dict2css import IMPORTANT + + if not obj: + raise ValueError("Property cannot be empty") + + if self._markers is not None: + marker_id: Optional[int] = id(obj) + if marker_id in self._markers: # pragma: no cover # TODO (super edge case) + raise ValueError("Circular reference detected") + assert marker_id is not None + self._markers[marker_id] = obj + else: + marker_id = None + + first: bool = True + for value in obj: + if first: + yield '' + first = False + else: + yield ' ' + + if value == IMPORTANT: + yield "!important" + else: + yield from self._iterencode(value, indent_level) + + if self._markers is not None and marker_id is not None: + del self._markers[marker_id] + + def _iterencode_dict( + self, + obj: Mapping[str, Any], + indent_level: int, + ) -> Iterable[str]: + if not obj: + if indent_level >= 0: + yield "{}" + + return + + if self._markers is not None: + marker_id: Optional[int] = id(obj) + if marker_id in self._markers: + raise ValueError("Circular reference detected") + assert marker_id is not None + self._markers[marker_id] = obj + else: + marker_id = None - try: - css_parser.ser = self - yield + if indent_level >= 0: + yield '{' + + minify_indent = False + if self._minify or not self._indent_str: + # No indent + newline_indent: Optional[str] = None + + if indent_level == -1: + indent_level += 1 + minify_indent = True + + else: + indent_level += 1 + newline_indent = '\n' + self._indent_str * indent_level + assert newline_indent is not None + + if indent_level > 0: + yield newline_indent + + first = True + if self._sort_keys: + items: Any = sorted(obj.items()) + else: + items = obj.items() + + total_items: int = len(items) + for idx, (key, value) in enumerate(items): + if not isinstance(key, str): + raise TypeError(f"keys must be strings, not {key.__class__.__name__}") + + if first: + first = False + elif newline_indent is not None: + yield newline_indent # we do not need to yield anything if indent == 0 + yield self._encode_str(key) + + if isinstance(value, dict): + if not self._minify: + yield ' ' + + yield from self._iterencode_dict(value, indent_level) + else: + yield self._key_separator + + if isinstance(value, (list, tuple)): + yield from self._iterencode_list(value, indent_level) + else: + yield from self._iterencode(value, indent_level) + + if idx != total_items - 1 or self._trailing_semicolon: + yield self._item_separator + + if self._indent_str: + indent_level -= 1 + yield '\n' + self._indent_str * indent_level + elif minify_indent: + indent_level -= 1 + + if indent_level >= 0: + if self._indent_closing_brace: + yield self._indent_str + + yield '}' + + if not self._minify: + yield '\n' + + if self._markers is not None and marker_id is not None: + del self._markers[marker_id] + + # TODO: deprecate + @contextmanager + def use(self) -> Iterator: # pragma: no cover + """ + No-op. Deprecated. + """ - finally: - css_parser.ser = current_serializer + yield diff --git a/doc-source/changelog.rst b/doc-source/changelog.rst index 8317be3..4c38a44 100644 --- a/doc-source/changelog.rst +++ b/doc-source/changelog.rst @@ -3,6 +3,16 @@ Changelog =============== +0.5.0 +------- + +* Drop support for Python 3.7 +* Reimplement ``load(s)`` using ``tinycss2`` and ``dump(s)`` using a modified version of ``ujson5`` +* Remove ``StyleSheet`` and ``make_style`` + +.. changelog:: 0.5.0 + + 0.4.0 ------- diff --git a/doc-source/conf.py b/doc-source/conf.py index d8b0a88..8c2a0f8 100644 --- a/doc-source/conf.py +++ b/doc-source/conf.py @@ -101,5 +101,4 @@ def setup(app): nitpicky = True latex_elements["preamble"] = "\\raggedbottom\n\\widowpenalty10000" -ignore_missing_xrefs = ["^css_parser\\."] changelog_sections_numbered = False diff --git a/doc-source/index.rst b/doc-source/index.rst index 8a62dcc..0464449 100644 --- a/doc-source/index.rst +++ b/doc-source/index.rst @@ -107,7 +107,7 @@ dict2css :alt: GitHub top language .. |commits-since| github-shield:: - :commits-since: v0.4.0 + :commits-since: v0.6.0 :alt: GitHub commits since tagged version .. |commits-latest| github-shield:: @@ -23,3 +23,8 @@ bare-ignore: lint: unused-imports incomplete-defs bare-ignore tox -n qa + +uncomm: + git status -uall --ignored + +# Custom commands can be added below this comment diff --git a/pyproject.toml b/pyproject.toml index 21554e0..6143397 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "whey" [project] name = "dict2css" -version = "0.4.0" +version = "0.6.0" description = "A μ-library for constructing cascading style sheets from Python dictionaries." readme = "README.rst" keywords = [ "css", "serialize",] @@ -30,7 +30,7 @@ base-classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules", "Typing :: Typed", ] -python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",] +python-versions = [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",] python-implementations = [ "CPython", "PyPy",] platforms = [ "Windows", "macOS", "Linux",] license-key = "MIT" @@ -139,9 +139,6 @@ reformat = true [tool.snippet-fmt.languages.json] -[tool.dep_checker] -allowed_unused = [ "cssutils",] - [tool.dependency-dash."requirements.txt"] order = 10 diff --git a/repo_helper.yml b/repo_helper.yml index 5558ba9..5dd6d81 100644 --- a/repo_helper.yml +++ b/repo_helper.yml @@ -6,7 +6,7 @@ author: 'Dominic Davis-Foster' email: 'dominic@davis-foster.co.uk' username: 'sphinx-toolbox' assignee: 'domdfcoding' -version: '0.4.0' +version: '0.6.0' license: 'MIT' short_desc: 'A μ-library for constructing cascading style sheets from Python dictionaries.' @@ -19,14 +19,12 @@ on_conda_forge: true enable_conda: false python_versions: - - 3.7 - 3.8 - 3.9 - "3.10" - "3.11" - "3.12" - - 3.13-dev - - pypy37 + - "3.13" - pypy38 - pypy39 @@ -42,7 +40,6 @@ classifiers: sphinx_conf_epilogue: - nitpicky = True - latex_elements["preamble"] = "\\raggedbottom\n\\widowpenalty10000" - - ignore_missing_xrefs = ["^css_parser\\."] - changelog_sections_numbered = False exclude_files: @@ -56,6 +53,3 @@ extra_sphinx_extensions: - sphinx_toolbox_experimental.missing_xref - sphinx_toolbox_experimental.changelog - latex_mu - -tox_unmanaged: - - testenv diff --git a/requirements.txt b/requirements.txt index 5b4d1d8..241bfb1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,2 @@ -# css-parser>=1.0.6 -# Later cssutils polluted by AI and the new licence-breaking chardet -cssutils<=2.11.0,>=2.2.0 domdf-python-tools>=2.2.0 +tinycss2>=1.2.1 diff --git a/tests/test_dict2css.py b/tests/test_dict2css.py index 42301cb..6a22c58 100644 --- a/tests/test_dict2css.py +++ b/tests/test_dict2css.py @@ -1,55 +1,120 @@ # stdlib -from typing import Dict, Mapping, MutableMapping +from ipaddress import IPv4Address +from typing import Dict, Mapping, MutableMapping, Optional, no_type_check # 3rd party -import cssutils # type: ignore import pytest from coincidence.regressions import AdvancedDataRegressionFixture, AdvancedFileRegressionFixture from domdf_python_tools.paths import PathPlus -from domdf_python_tools.stringlist import StringList from domdf_python_tools.words import TAB # this package -from dict2css import IMPORTANT, Style, StyleSheet, dump, dumps, load, loads, make_style +from dict2css import IMPORTANT, Style, dump, dumps, load, loads from dict2css.helpers import em, px, rem -from dict2css.serializer import CSSSerializer -def test_stylesheet(advanced_file_regression: AdvancedFileRegressionFixture): - serializer = CSSSerializer(indent=" ", trailing_semicolon=True) +def boolean_option(name: str, id: str): # noqa: A002,MAN002 # pylint: disable=redefined-builtin + return pytest.mark.parametrize( + name, + [ + pytest.param(True, id=id), + pytest.param(False, id=f"not {id}"), + ], + ) + + +def ternary_option(name: str, id: str): # noqa: A002,MAN002 # pylint: disable=redefined-builtin + return pytest.mark.parametrize( + name, + [ + pytest.param(True, id=id), + pytest.param(False, id=f"not {id}"), + pytest.param(None, id=f"unset {id}"), + ], + ) + + +@no_type_check +def test_dumps_not_mapping(): + with pytest.raises(TypeError, match="Cannot convert .* to CSS"): + dumps([1, 2, 3]) + + with pytest.raises(TypeError, match="Cannot convert .* to CSS"): + dumps((1, 2, 3)) + + with pytest.raises(TypeError, match="Cannot convert .* to CSS"): + dumps("ABC") + + with pytest.raises(TypeError, match="Cannot convert .* to CSS"): + dumps(123) + + with pytest.raises(TypeError, match="Cannot convert .* to CSS"): + dumps(123.456) + + with pytest.raises(TypeError, match="Cannot convert .* to CSS"): + dumps(True) - with serializer.use(): - sheet = StyleSheet() + with pytest.raises(TypeError, match="Cannot convert .* to CSS"): + dumps(None) - # Body width - sheet.add_style(".wy-nav-content", {"max-width": (px(1200), IMPORTANT)}) - # Spacing between list items - sheet.add_style("li p:last-child", {"margin-bottom": (px(12), IMPORTANT)}) +@no_type_check +@boolean_option("check_circular", "check_circular") +def test_dumps_unknown_type(check_circular: bool): + with pytest.raises(ValueError, match="Object of type .* cannot be represented in CSS"): + dumps({"the_key": IPv4Address("127.0.0.1")}, check_circular=check_circular) - # Smooth scrolling between sections - sheet.add_style("html", {"scroll-behavior": "smooth"}) - stylesheet = sheet.tostring().replace('}', "}\n") +@no_type_check +def test_dumps_bad_floats(): + with pytest.raises(ValueError, match="Out of range float values are not allowed:"): + dumps({"the_key": float("inf")}) - advanced_file_regression.check(stylesheet, extension=".css") + with pytest.raises(ValueError, match="Out of range float values are not allowed:"): + dumps({"the_key": float("-inf")}) + with pytest.raises(ValueError, match="Out of range float values are not allowed:"): + dumps({"the_key": float("nan")}) -@pytest.mark.parametrize("trailing_semicolon", [True, False]) -@pytest.mark.parametrize("indent_closing_brace", [True, False]) -@pytest.mark.parametrize("indent", [TAB, " ", " "]) + +@boolean_option("check_circular", "check_circular") +@boolean_option("sort_keys", "sort_keys") +@ternary_option("trailing_semicolon", "trailing_semicolon") +@boolean_option("indent_closing_brace", "indent_closing_brace") +@pytest.mark.parametrize( + "indent", + [ + pytest.param(TAB, id="tab"), + pytest.param(" ", id='2'), + pytest.param(" ", id='4'), + pytest.param('', id='0'), + ], + ) +@pytest.mark.parametrize( + "none_style", + [ + pytest.param("none", id="normal_none"), + pytest.param("None", id="cap_none"), + ], + ) def test_dumps( advanced_file_regression: AdvancedFileRegressionFixture, - trailing_semicolon: bool, + trailing_semicolon: Optional[bool], indent_closing_brace: bool, indent: str, + check_circular: bool, + sort_keys: bool, tmp_pathplus: PathPlus, + none_style: str, ): stylesheet: Dict[str, Style] = { - ".wy-nav-content": {"max-width": (rem(1200), IMPORTANT)}, + ".wy-nav-content": {"max-width": (rem(1200), IMPORTANT), "z-index": 999}, "li p:last-child": { "margin-bottom": (em(12), IMPORTANT), "margin-top": em(6), + "font-size": px(14), + "line-height": 1.5, + "font-weight": (800, IMPORTANT), }, "html": {"scroll-behavior": "smooth"}, } @@ -59,6 +124,9 @@ def test_dumps( indent=indent, trailing_semicolon=trailing_semicolon, indent_closing_brace=indent_closing_brace, + check_circular=check_circular, + sort_keys=sort_keys, + none_style=none_style, # type: ignore[arg-type] ) advanced_file_regression.check(css, extension=".css") @@ -71,6 +139,8 @@ def test_dumps( indent=indent, trailing_semicolon=trailing_semicolon, indent_closing_brace=indent_closing_brace, + check_circular=check_circular, + sort_keys=sort_keys, ) advanced_file_regression.check_file(output_file) @@ -81,33 +151,16 @@ def test_dumps( indent=indent, trailing_semicolon=trailing_semicolon, indent_closing_brace=indent_closing_brace, + check_circular=check_circular, + sort_keys=sort_keys, ) advanced_file_regression.check_file(output_file) -def test_make_style(): - style: cssutils.css.CSSStyleRule = make_style("li p:last-child", {"max-width": (rem(1200), IMPORTANT)}) - assert str(style.selectorText) == "li p:last-child" - assert StringList(style.cssText) == [ - "li p:last-child {", - " max-width: 1200rem !important", - " }", - ] - - serializer = CSSSerializer(trailing_semicolon=True) - - with serializer.use(): - assert StringList(style.cssText) == [ - "li p:last-child {", - "\tmax-width: 1200rem !important;", - '}', - ] - - def test_dump_minify(advanced_file_regression: AdvancedFileRegressionFixture, tmp_pathplus: PathPlus): stylesheet: Dict[str, Style] = { - ".wy-nav-content": {"max-width": (rem(1200), IMPORTANT)}, + ".wy-nav-content": {"max-width": (rem(1200), IMPORTANT), "box-shadow": None}, "li p:last-child": { "margin-bottom": (em(12), IMPORTANT), "margin-top": em(6), @@ -192,3 +245,58 @@ def test_loads(advanced_data_regression: AdvancedDataRegressionFixture, tmp_path with style_file.open() as fp: assert load(fp) == stylesheet + + +def test_loads_bad_syntax(): + style = [ + ".wy-nav-content {", + " max-width", + " }", + ] + + with pytest.raises(ValueError, match="<ParseError invalid>"): + loads('\n'.join(style)) + + +@no_type_check +def test_circular_references(): + css = { + 'a': {'b': 'c'}, + } + css['d'] = css + + with pytest.raises(ValueError, match="Circular reference detected"): + dumps(css) + + +def test_edge_cases(): + with pytest.raises(TypeError, match="keys must be strings, not"): + dumps({1234: {'a': 'b'}}) # type: ignore[dict-item] + + with pytest.raises(ValueError, match="Property cannot be empty"): + dumps({'a': {'b': ()}}) + + assert dumps({}) == '' + assert dumps({'a': {}}) == "a {}\n" + assert dumps({'a': {'b': True}}, indent='') == "a {b: true}\n" + assert dumps({'a': {'b': False}}, indent='') == "a {b: false}\n" + + assert dumps({'a': {'b': ('c', ('d', ))}}) == 'a {\n\tb: c d\n}\n' + + +def test_for_sphinx_toolbox(): + assert dumps({"p.source-link": {"margin-bottom": 0}}, trailing_semicolon=False) == """p.source-link { + margin-bottom: 0 +} +""" + + font_family = '"SFMono-Regular", Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace' + css_dict = {"p.source-link": {"font-family": font_family}} + + assert dumps( + css_dict, + trailing_semicolon=False, + ) == """p.source-link { + font-family: "SFMono-Regular", Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace +} +""" diff --git a/tests/test_dict2css_/test_dump_minify.css b/tests/test_dict2css_/test_dump_minify.css index 210a232..d65e856 100644 --- a/tests/test_dict2css_/test_dump_minify.css +++ b/tests/test_dict2css_/test_dump_minify.css @@ -1 +1 @@ -.wy-nav-content{max-width:1200rem !important}li p:last-child{margin-bottom:12em !important;margin-top:6em}html{scroll-behavior:smooth} +.wy-nav-content{max-width:1200rem !important;box-shadow:none}li p:last-child{margin-bottom:12em !important;margin-top:6em}html{scroll-behavior:smooth} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..ff02894 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } +html {scroll-behavior: smooth; } diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..ff02894 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } +html {scroll-behavior: smooth; } diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..7c02e55 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +html {scroll-behavior: smooth; } +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..7c02e55 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +html {scroll-behavior: smooth; } +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..ff02894 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } +html {scroll-behavior: smooth; } diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..ff02894 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } +html {scroll-behavior: smooth; } diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..7c02e55 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +html {scroll-behavior: smooth; } +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..7c02e55 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +html {scroll-behavior: smooth; } +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..6afd4a9 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important + } + +html { + scroll-behavior: smooth + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..6afd4a9 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important + } + +html { + scroll-behavior: smooth + } diff --git a/tests/test_dict2css_/test_dumps____True_False_.css b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css index bac0891..c6d1b0d 100644 --- a/tests/test_dict2css_/test_dumps____True_False_.css +++ b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -1,12 +1,16 @@ .wy-nav-content { - max-width: 1200rem !important + max-width: 1200rem !important; + z-index: 999 + } + +html { + scroll-behavior: smooth } li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } - -html { - scroll-behavior: smooth - } diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..c6d1b0d --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +html { + scroll-behavior: smooth + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em + } diff --git a/tests/test_dict2css_/test_dumps____True_True_.css b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css index 639a7ab..905e248 100644 --- a/tests/test_dict2css_/test_dumps____True_True_.css +++ b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -1,10 +1,14 @@ .wy-nav-content { max-width: 1200rem !important; + z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; } html { diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..905e248 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..5c89a40 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..5c89a40 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..905e248 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..905e248 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..5c89a40 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..5c89a40 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..5c14ff5 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important +} + +html { + scroll-behavior: smooth +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..5c14ff5 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important +} + +html { + scroll-behavior: smooth +} diff --git a/tests/test_dict2css_/test_dumps____False_False_.css b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css index be1415b..b18f4e0 100644 --- a/tests/test_dict2css_/test_dumps____False_False_.css +++ b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -1,12 +1,16 @@ .wy-nav-content { - max-width: 1200rem !important + max-width: 1200rem !important; + z-index: 999 +} + +html { + scroll-behavior: smooth } li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } - -html { - scroll-behavior: smooth -} diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..b18f4e0 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +html { + scroll-behavior: smooth +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em +} diff --git a/tests/test_dict2css_/test_dumps____False_True_.css b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css index 1cf3c1d..2dc8aba 100644 --- a/tests/test_dict2css_/test_dumps____False_True_.css +++ b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -1,10 +1,14 @@ .wy-nav-content { max-width: 1200rem !important; + z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; } html { diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..2dc8aba --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..b0dc652 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..b0dc652 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..2dc8aba --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..2dc8aba --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..b0dc652 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..b0dc652 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..ffbd0e7 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important + } + +html { + scroll-behavior: smooth + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..ffbd0e7 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important + } + +html { + scroll-behavior: smooth + } diff --git a/tests/test_dict2css_/test_dumps______True_False_.css b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css index cce7634..8718aed 100644 --- a/tests/test_dict2css_/test_dumps______True_False_.css +++ b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -1,12 +1,16 @@ .wy-nav-content { - max-width: 1200rem !important + max-width: 1200rem !important; + z-index: 999 + } + +html { + scroll-behavior: smooth } li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } - -html { - scroll-behavior: smooth - } diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..8718aed --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +html { + scroll-behavior: smooth + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em + } diff --git a/tests/test_dict2css_/test_dumps______True_True_.css b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css index 056d939..67a5fe0 100644 --- a/tests/test_dict2css_/test_dumps______True_True_.css +++ b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -1,10 +1,14 @@ .wy-nav-content { max-width: 1200rem !important; + z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; } html { diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..67a5fe0 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..49a3b1a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..49a3b1a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..67a5fe0 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..67a5fe0 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..49a3b1a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..49a3b1a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..76b9976 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important +} + +html { + scroll-behavior: smooth +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..76b9976 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important +} + +html { + scroll-behavior: smooth +} diff --git a/tests/test_dict2css_/test_dumps______False_False_.css b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css index 43fbdb2..9adc67a 100644 --- a/tests/test_dict2css_/test_dumps______False_False_.css +++ b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -1,12 +1,16 @@ .wy-nav-content { - max-width: 1200rem !important + max-width: 1200rem !important; + z-index: 999 +} + +html { + scroll-behavior: smooth } li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } - -html { - scroll-behavior: smooth -} diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..9adc67a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +html { + scroll-behavior: smooth +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em +} diff --git a/tests/test_dict2css_/test_dumps______False_True_.css b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css index d84370c..19c3f36 100644 --- a/tests/test_dict2css_/test_dumps______False_True_.css +++ b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -1,10 +1,14 @@ .wy-nav-content { max-width: 1200rem !important; + z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; } html { diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..19c3f36 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..8a67610 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..8a67610 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..19c3f36 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..19c3f36 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..8a67610 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..8a67610 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..fa2263f --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important + } + +html { + scroll-behavior: smooth + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..fa2263f --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important + } + +html { + scroll-behavior: smooth + } diff --git a/tests/test_dict2css_/test_dumps__t_True_False_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css index bbe19ce..306b110 100644 --- a/tests/test_dict2css_/test_dumps__t_True_False_.css +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -1,12 +1,16 @@ .wy-nav-content { - max-width: 1200rem !important + max-width: 1200rem !important; + z-index: 999 + } + +html { + scroll-behavior: smooth } li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } - -html { - scroll-behavior: smooth - } diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..306b110 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +html { + scroll-behavior: smooth + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em + } diff --git a/tests/test_dict2css_/test_dumps__t_True_True_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css index 3c47fb8..60d3152 100644 --- a/tests/test_dict2css_/test_dumps__t_True_True_.css +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -1,10 +1,14 @@ .wy-nav-content { max-width: 1200rem !important; + z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; } html { diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..60d3152 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..19529d1 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..19529d1 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..60d3152 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..60d3152 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..19529d1 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..19529d1 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..ba6d847 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important +} + +html { + scroll-behavior: smooth +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..ba6d847 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important +} + +html { + scroll-behavior: smooth +} diff --git a/tests/test_dict2css_/test_dumps__t_False_False_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css index fe9a067..1efa5e5 100644 --- a/tests/test_dict2css_/test_dumps__t_False_False_.css +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -1,12 +1,16 @@ .wy-nav-content { - max-width: 1200rem !important + max-width: 1200rem !important; + z-index: 999 +} + +html { + scroll-behavior: smooth } li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em } - -html { - scroll-behavior: smooth -} diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..1efa5e5 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +html { + scroll-behavior: smooth +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em +} diff --git a/tests/test_dict2css_/test_dumps__t_False_True_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css index 6b4100e..d5a9c42 100644 --- a/tests/test_dict2css_/test_dumps__t_False_True_.css +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -1,10 +1,14 @@ .wy-nav-content { max-width: 1200rem !important; + z-index: 999; } li p:last-child { margin-bottom: 12em !important; margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; } html { diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..d5a9c42 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..fb0383d --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..fb0383d --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..d5a9c42 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..d5a9c42 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..fb0383d --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..fb0383d --- /dev/null +++ b/tests/test_dict2css_/test_dumps_cap_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..ff02894 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } +html {scroll-behavior: smooth; } diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..ff02894 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } +html {scroll-behavior: smooth; } diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..7c02e55 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +html {scroll-behavior: smooth; } +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..7c02e55 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +html {scroll-behavior: smooth; } +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..ff02894 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } +html {scroll-behavior: smooth; } diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..ff02894 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important; } +html {scroll-behavior: smooth; } diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..7c02e55 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +html {scroll-behavior: smooth; } +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..7c02e55 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999; } +html {scroll-behavior: smooth; } +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em; } diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..187f96e --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +li p:last-child {margin-bottom: 12em !important; margin-top: 6em; font-size: 14px; line-height: 1.5; font-weight: 800 !important} +html {scroll-behavior: smooth} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..b71a82a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_0_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,3 @@ +.wy-nav-content {max-width: 1200rem !important; z-index: 999} +html {scroll-behavior: smooth} +li p:last-child {font-size: 14px; font-weight: 800 !important; line-height: 1.5; margin-bottom: 12em !important; margin-top: 6em} diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..6afd4a9 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important + } + +html { + scroll-behavior: smooth + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..6afd4a9 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important + } + +html { + scroll-behavior: smooth + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..c6d1b0d --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +html { + scroll-behavior: smooth + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..c6d1b0d --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +html { + scroll-behavior: smooth + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..905e248 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..905e248 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..5c89a40 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..5c89a40 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..905e248 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..905e248 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..5c89a40 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..5c89a40 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..5c14ff5 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important +} + +html { + scroll-behavior: smooth +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..5c14ff5 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important +} + +html { + scroll-behavior: smooth +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..b18f4e0 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +html { + scroll-behavior: smooth +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..b18f4e0 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +html { + scroll-behavior: smooth +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..2dc8aba --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..2dc8aba --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..b0dc652 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..b0dc652 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..2dc8aba --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..2dc8aba --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..b0dc652 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..b0dc652 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_2_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..ffbd0e7 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important + } + +html { + scroll-behavior: smooth + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..ffbd0e7 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important + } + +html { + scroll-behavior: smooth + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..8718aed --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +html { + scroll-behavior: smooth + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..8718aed --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +html { + scroll-behavior: smooth + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..67a5fe0 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..67a5fe0 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..49a3b1a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..49a3b1a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..67a5fe0 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..67a5fe0 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..49a3b1a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..49a3b1a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..76b9976 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important +} + +html { + scroll-behavior: smooth +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..76b9976 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important +} + +html { + scroll-behavior: smooth +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..9adc67a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +html { + scroll-behavior: smooth +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..9adc67a --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +html { + scroll-behavior: smooth +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..19c3f36 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..19c3f36 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..8a67610 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..8a67610 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..19c3f36 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..19c3f36 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..8a67610 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..8a67610 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_4_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..fa2263f --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important + } + +html { + scroll-behavior: smooth + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..fa2263f --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important + } + +html { + scroll-behavior: smooth + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..306b110 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +html { + scroll-behavior: smooth + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..306b110 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 + } + +html { + scroll-behavior: smooth + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..60d3152 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..60d3152 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..19529d1 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..19529d1 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..60d3152 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..60d3152 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; + } + +html { + scroll-behavior: smooth; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..19529d1 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..19529d1 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; + } + +html { + scroll-behavior: smooth; + } + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; + } diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..ba6d847 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important +} + +html { + scroll-behavior: smooth +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..ba6d847 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important +} + +html { + scroll-behavior: smooth +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..1efa5e5 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +html { + scroll-behavior: smooth +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..1efa5e5 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_not_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999 +} + +html { + scroll-behavior: smooth +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..d5a9c42 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..d5a9c42 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..fb0383d --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..fb0383d --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css new file mode 100644 index 0000000..d5a9c42 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..d5a9c42 --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_not_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +li p:last-child { + margin-bottom: 12em !important; + margin-top: 6em; + font-size: 14px; + line-height: 1.5; + font-weight: 800 !important; +} + +html { + scroll-behavior: smooth; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css new file mode 100644 index 0000000..fb0383d --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css new file mode 100644 index 0000000..fb0383d --- /dev/null +++ b/tests/test_dict2css_/test_dumps_normal_none_tab_not_indent_closing_brace_unset_trailing_semicolon_sort_keys_not_check_circular_.css @@ -0,0 +1,16 @@ +.wy-nav-content { + max-width: 1200rem !important; + z-index: 999; +} + +html { + scroll-behavior: smooth; +} + +li p:last-child { + font-size: 14px; + font-weight: 800 !important; + line-height: 1.5; + margin-bottom: 12em !important; + margin-top: 6em; +} diff --git a/tests/test_dict2css_/test_stylesheet.css b/tests/test_dict2css_/test_stylesheet.css deleted file mode 100644 index 2fe26dc..0000000 --- a/tests/test_dict2css_/test_stylesheet.css +++ /dev/null @@ -1,11 +0,0 @@ -.wy-nav-content { - max-width: 1200px !important; -} - -li p:last-child { - margin-bottom: 12px !important; -} - -html { - scroll-behavior: smooth; -} @@ -2,6 +2,7 @@ # You may add new sections, but any changes made to the following sections will be lost: # * tox # * envlists +# * testenv # * testenv:.package # * testenv:py313-dev # * testenv:py313 @@ -21,19 +22,7 @@ # * pytest [tox] -envlist = - py37 - py38 - py39 - py310 - py311 - py312 - py313 - pypy37 - pypy38 - pypy39 - mypy - build +envlist = py38, py39, py310, py311, py312, py313, pypy38, pypy39, mypy, build skip_missing_interpreters = True isolated_build = True requires = @@ -43,10 +32,21 @@ requires = virtualenv!=20.16.0,<20.39 [envlists] -test = py37, py38, py39, py310, py311, py312, py313, pypy37, pypy38, pypy39 +test = py38, py39, py310, py311, py312, py313, pypy38, pypy39 qa = mypy, lint cov = py39, coverage +[testenv] +setenv = + PYTHONDEVMODE=1 + PIP_DISABLE_PIP_VERSION_CHECK=1 + SETUPTOOLS_USE_DISTUTILS=stdlib +download = True +deps = -r{toxinidir}/tests/requirements.txt +commands = + python --version + python -m pytest --cov=dict2css -r aR tests/ {posargs} + [testenv:.package] setenv = PYTHONDEVMODE=1 @@ -186,7 +186,7 @@ inline-quotes = " multiline-quotes = """ docstring-quotes = """ count = True -min_python_version = 3.7 +min_python_version = 3.8 unused-arguments-ignore-abstract-functions = True unused-arguments-ignore-overload-functions = True unused-arguments-ignore-magic-methods = True @@ -215,15 +215,3 @@ package = dict2css [pytest] addopts = --color yes --durations 25 timeout = 300 - -[testenv] -setenv = - PYTHONDEVMODE=1 - PIP_DISABLE_PIP_VERSION_CHECK=1 -deps = -r{toxinidir}/tests/requirements.txt -commands = - python --version - python -m pip uninstall css-parser -y - python -m pytest --cov=dict2css -r aR tests/ {posargs} - python -m pip install "css-parser>=1.0.6" - python -m pytest --cov=dict2css -r aR tests/ --cov-append {posargs} |
