@cenk1cenk2/md-printer 2.2.63 → 2.2.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/commands/index.js
CHANGED
package/dist/constants/index.js
CHANGED
|
@@ -33,7 +33,7 @@ var TemplateFiles;
|
|
|
33
33
|
TemplateFiles2["SETTINGS"] = "settings.json";
|
|
34
34
|
})(TemplateFiles || (TemplateFiles = {}));
|
|
35
35
|
var RequiredTemplateFiles = [
|
|
36
|
-
|
|
36
|
+
"settings.json"
|
|
37
37
|
];
|
|
38
38
|
var TEMPLATE_DIRECTORY = "templates";
|
|
39
39
|
// Annotate the CommonJS export names for ESM import in node:
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cenk1cenk2/md-printer",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.65",
|
|
4
4
|
"description": "A markdown printer.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"repository": "https://gitlab.kilic.dev/utils/md-printer",
|
|
@@ -69,13 +69,13 @@
|
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@cenk1cenk2/oclif-common": "^5.0.8",
|
|
71
71
|
"@oclif/core": "^2.15.0",
|
|
72
|
-
"@oclif/plugin-help": "^5.2.
|
|
72
|
+
"@oclif/plugin-help": "^5.2.20",
|
|
73
73
|
"chokidar": "^3.5.3",
|
|
74
74
|
"class-transformer": "^0.5.1",
|
|
75
75
|
"class-validator": "^0.14.0",
|
|
76
76
|
"config": "^3.3.9",
|
|
77
77
|
"enquirer": "^2.4.1",
|
|
78
|
-
"execa": "^
|
|
78
|
+
"execa": "^8.0.1",
|
|
79
79
|
"fs-extra": "^11.1.1",
|
|
80
80
|
"globby": "^11.1.0",
|
|
81
81
|
"gray-matter": "^4.0.3",
|
|
@@ -85,20 +85,20 @@
|
|
|
85
85
|
"yaml": "^2.3.2"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@cenk1cenk2/cz-cc": "^1.
|
|
89
|
-
"@cenk1cenk2/eslint-config": "^2.7.
|
|
90
|
-
"@swc/core": "^1.3.
|
|
88
|
+
"@cenk1cenk2/cz-cc": "^1.7.1",
|
|
89
|
+
"@cenk1cenk2/eslint-config": "^2.7.21",
|
|
90
|
+
"@swc/core": "^1.3.90",
|
|
91
91
|
"@tailwindcss/forms": "^0.5.6",
|
|
92
|
-
"@tailwindcss/typography": "^0.5.
|
|
93
|
-
"@types/config": "^3.3.
|
|
94
|
-
"@types/fs-extra": "^11.0.
|
|
95
|
-
"@types/node": "^18.17.
|
|
96
|
-
"@types/nunjucks": "^3.2.
|
|
97
|
-
"eslint": "^8.
|
|
98
|
-
"lint-staged": "^
|
|
99
|
-
"oclif": "^3.
|
|
100
|
-
"postcss": "^8.4.
|
|
101
|
-
"prettier": "^3.0.
|
|
92
|
+
"@tailwindcss/typography": "^0.5.10",
|
|
93
|
+
"@types/config": "^3.3.1",
|
|
94
|
+
"@types/fs-extra": "^11.0.2",
|
|
95
|
+
"@types/node": "^18.17.19",
|
|
96
|
+
"@types/nunjucks": "^3.2.4",
|
|
97
|
+
"eslint": "^8.50.0",
|
|
98
|
+
"lint-staged": "^14.0.1",
|
|
99
|
+
"oclif": "^3.17.2",
|
|
100
|
+
"postcss": "^8.4.31",
|
|
101
|
+
"prettier": "^3.0.3",
|
|
102
102
|
"simple-git-hooks": "^2.9.0",
|
|
103
103
|
"source-map-support": "^0.5.21",
|
|
104
104
|
"tailwindcss": "^3.3.3",
|
|
@@ -718,12 +718,12 @@ select {
|
|
|
718
718
|
max-width: 65ch;
|
|
719
719
|
}
|
|
720
720
|
|
|
721
|
-
.prose :where(p):not(:where([class~="not-prose"] *)) {
|
|
721
|
+
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
722
722
|
margin-top: 1.25em;
|
|
723
723
|
margin-bottom: 1.25em;
|
|
724
724
|
}
|
|
725
725
|
|
|
726
|
-
.prose :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
|
|
726
|
+
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
727
727
|
color: var(--tw-prose-lead);
|
|
728
728
|
font-size: 1.25em;
|
|
729
729
|
line-height: 1.6;
|
|
@@ -731,96 +731,102 @@ select {
|
|
|
731
731
|
margin-bottom: 1.2em;
|
|
732
732
|
}
|
|
733
733
|
|
|
734
|
-
.prose :where(a):not(:where([class~="not-prose"] *)) {
|
|
734
|
+
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
735
735
|
color: var(--tw-prose-links);
|
|
736
736
|
text-decoration: underline;
|
|
737
737
|
font-weight: 500;
|
|
738
738
|
}
|
|
739
739
|
|
|
740
|
-
.prose :where(strong):not(:where([class~="not-prose"] *)) {
|
|
740
|
+
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
741
741
|
color: var(--tw-prose-bold);
|
|
742
742
|
font-weight: 600;
|
|
743
743
|
}
|
|
744
744
|
|
|
745
|
-
.prose :where(a strong):not(:where([class~="not-prose"] *)) {
|
|
745
|
+
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
746
746
|
color: inherit;
|
|
747
747
|
}
|
|
748
748
|
|
|
749
|
-
.prose :where(blockquote strong):not(:where([class~="not-prose"] *)) {
|
|
749
|
+
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
750
750
|
color: inherit;
|
|
751
751
|
}
|
|
752
752
|
|
|
753
|
-
.prose :where(thead th strong):not(:where([class~="not-prose"] *)) {
|
|
753
|
+
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
754
754
|
color: inherit;
|
|
755
755
|
}
|
|
756
756
|
|
|
757
|
-
.prose :where(ol):not(:where([class~="not-prose"] *)) {
|
|
757
|
+
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
758
758
|
list-style-type: decimal;
|
|
759
759
|
margin-top: 1.25em;
|
|
760
760
|
margin-bottom: 1.25em;
|
|
761
761
|
padding-left: 1.625em;
|
|
762
762
|
}
|
|
763
763
|
|
|
764
|
-
.prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)) {
|
|
764
|
+
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
765
765
|
list-style-type: upper-alpha;
|
|
766
766
|
}
|
|
767
767
|
|
|
768
|
-
.prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)) {
|
|
768
|
+
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
769
769
|
list-style-type: lower-alpha;
|
|
770
770
|
}
|
|
771
771
|
|
|
772
|
-
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)) {
|
|
772
|
+
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
773
773
|
list-style-type: upper-alpha;
|
|
774
774
|
}
|
|
775
775
|
|
|
776
|
-
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)) {
|
|
776
|
+
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
777
777
|
list-style-type: lower-alpha;
|
|
778
778
|
}
|
|
779
779
|
|
|
780
|
-
.prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)) {
|
|
780
|
+
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
781
781
|
list-style-type: upper-roman;
|
|
782
782
|
}
|
|
783
783
|
|
|
784
|
-
.prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)) {
|
|
784
|
+
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
785
785
|
list-style-type: lower-roman;
|
|
786
786
|
}
|
|
787
787
|
|
|
788
|
-
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)) {
|
|
788
|
+
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
789
789
|
list-style-type: upper-roman;
|
|
790
790
|
}
|
|
791
791
|
|
|
792
|
-
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)) {
|
|
792
|
+
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
793
793
|
list-style-type: lower-roman;
|
|
794
794
|
}
|
|
795
795
|
|
|
796
|
-
.prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)) {
|
|
796
|
+
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
797
797
|
list-style-type: decimal;
|
|
798
798
|
}
|
|
799
799
|
|
|
800
|
-
.prose :where(ul):not(:where([class~="not-prose"] *)) {
|
|
800
|
+
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
801
801
|
list-style-type: disc;
|
|
802
802
|
margin-top: 1.25em;
|
|
803
803
|
margin-bottom: 1.25em;
|
|
804
804
|
padding-left: 1.625em;
|
|
805
805
|
}
|
|
806
806
|
|
|
807
|
-
.prose :where(ol > li):not(:where([class~="not-prose"] *))::marker {
|
|
807
|
+
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
|
|
808
808
|
font-weight: 400;
|
|
809
809
|
color: var(--tw-prose-counters);
|
|
810
810
|
}
|
|
811
811
|
|
|
812
|
-
.prose :where(ul > li):not(:where([class~="not-prose"] *))::marker {
|
|
812
|
+
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
|
|
813
813
|
color: var(--tw-prose-bullets);
|
|
814
814
|
}
|
|
815
815
|
|
|
816
|
-
.prose :where(
|
|
816
|
+
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
817
|
+
color: var(--tw-prose-headings);
|
|
818
|
+
font-weight: 600;
|
|
819
|
+
margin-top: 1.25em;
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
817
823
|
border-color: var(--tw-prose-hr);
|
|
818
824
|
border-top-width: 1px;
|
|
819
825
|
margin-top: 3em;
|
|
820
826
|
margin-bottom: 3em;
|
|
821
827
|
}
|
|
822
828
|
|
|
823
|
-
.prose :where(blockquote):not(:where([class~="not-prose"] *)) {
|
|
829
|
+
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
824
830
|
font-weight: 500;
|
|
825
831
|
font-style: italic;
|
|
826
832
|
color: var(--tw-prose-quotes);
|
|
@@ -832,15 +838,15 @@ select {
|
|
|
832
838
|
padding-left: 1em;
|
|
833
839
|
}
|
|
834
840
|
|
|
835
|
-
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *))::before {
|
|
841
|
+
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
|
|
836
842
|
content: open-quote;
|
|
837
843
|
}
|
|
838
844
|
|
|
839
|
-
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *))::after {
|
|
845
|
+
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
|
|
840
846
|
content: close-quote;
|
|
841
847
|
}
|
|
842
848
|
|
|
843
|
-
.prose :where(h1):not(:where([class~="not-prose"] *)) {
|
|
849
|
+
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
844
850
|
color: var(--tw-prose-headings);
|
|
845
851
|
font-weight: 800;
|
|
846
852
|
font-size: 2.25em;
|
|
@@ -849,12 +855,12 @@ select {
|
|
|
849
855
|
line-height: 1.1111111;
|
|
850
856
|
}
|
|
851
857
|
|
|
852
|
-
.prose :where(h1 strong):not(:where([class~="not-prose"] *)) {
|
|
858
|
+
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
853
859
|
font-weight: 900;
|
|
854
860
|
color: inherit;
|
|
855
861
|
}
|
|
856
862
|
|
|
857
|
-
.prose :where(h2):not(:where([class~="not-prose"] *)) {
|
|
863
|
+
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
858
864
|
color: var(--tw-prose-headings);
|
|
859
865
|
font-weight: 700;
|
|
860
866
|
font-size: 1.5em;
|
|
@@ -863,12 +869,12 @@ select {
|
|
|
863
869
|
line-height: 1.3333333;
|
|
864
870
|
}
|
|
865
871
|
|
|
866
|
-
.prose :where(h2 strong):not(:where([class~="not-prose"] *)) {
|
|
872
|
+
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
867
873
|
font-weight: 800;
|
|
868
874
|
color: inherit;
|
|
869
875
|
}
|
|
870
876
|
|
|
871
|
-
.prose :where(h3):not(:where([class~="not-prose"] *)) {
|
|
877
|
+
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
872
878
|
color: var(--tw-prose-headings);
|
|
873
879
|
font-weight: 600;
|
|
874
880
|
font-size: 1.25em;
|
|
@@ -877,12 +883,12 @@ select {
|
|
|
877
883
|
line-height: 1.6;
|
|
878
884
|
}
|
|
879
885
|
|
|
880
|
-
.prose :where(h3 strong):not(:where([class~="not-prose"] *)) {
|
|
886
|
+
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
881
887
|
font-weight: 700;
|
|
882
888
|
color: inherit;
|
|
883
889
|
}
|
|
884
890
|
|
|
885
|
-
.prose :where(h4):not(:where([class~="not-prose"] *)) {
|
|
891
|
+
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
886
892
|
color: var(--tw-prose-headings);
|
|
887
893
|
font-weight: 600;
|
|
888
894
|
margin-top: 1.5em;
|
|
@@ -890,73 +896,80 @@ select {
|
|
|
890
896
|
line-height: 1.5;
|
|
891
897
|
}
|
|
892
898
|
|
|
893
|
-
.prose :where(h4 strong):not(:where([class~="not-prose"] *)) {
|
|
899
|
+
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
894
900
|
font-weight: 700;
|
|
895
901
|
color: inherit;
|
|
896
902
|
}
|
|
897
903
|
|
|
898
|
-
.prose :where(img):not(:where([class~="not-prose"] *)) {
|
|
904
|
+
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
899
905
|
margin-top: 2em;
|
|
900
906
|
margin-bottom: 2em;
|
|
901
907
|
}
|
|
902
908
|
|
|
903
|
-
.prose :where(
|
|
904
|
-
|
|
905
|
-
margin-
|
|
909
|
+
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
910
|
+
display: block;
|
|
911
|
+
margin-top: 2em;
|
|
912
|
+
margin-bottom: 2em;
|
|
906
913
|
}
|
|
907
914
|
|
|
908
|
-
.prose :where(
|
|
909
|
-
|
|
915
|
+
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
916
|
+
font-weight: 500;
|
|
917
|
+
font-family: inherit;
|
|
918
|
+
color: var(--tw-prose-kbd);
|
|
919
|
+
box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
|
|
910
920
|
font-size: 0.875em;
|
|
911
|
-
|
|
912
|
-
|
|
921
|
+
border-radius: 0.3125rem;
|
|
922
|
+
padding-top: 0.1875em;
|
|
923
|
+
padding-right: 0.375em;
|
|
924
|
+
padding-bottom: 0.1875em;
|
|
925
|
+
padding-left: 0.375em;
|
|
913
926
|
}
|
|
914
927
|
|
|
915
|
-
.prose :where(code):not(:where([class~="not-prose"] *)) {
|
|
928
|
+
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
916
929
|
color: var(--tw-prose-code);
|
|
917
930
|
font-weight: 600;
|
|
918
931
|
font-size: 0.875em;
|
|
919
932
|
}
|
|
920
933
|
|
|
921
|
-
.prose :where(code):not(:where([class~="not-prose"] *))::before {
|
|
934
|
+
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
|
|
922
935
|
content: "`";
|
|
923
936
|
}
|
|
924
937
|
|
|
925
|
-
.prose :where(code):not(:where([class~="not-prose"] *))::after {
|
|
938
|
+
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
|
|
926
939
|
content: "`";
|
|
927
940
|
}
|
|
928
941
|
|
|
929
|
-
.prose :where(a code):not(:where([class~="not-prose"] *)) {
|
|
942
|
+
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
930
943
|
color: inherit;
|
|
931
944
|
}
|
|
932
945
|
|
|
933
|
-
.prose :where(h1 code):not(:where([class~="not-prose"] *)) {
|
|
946
|
+
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
934
947
|
color: inherit;
|
|
935
948
|
}
|
|
936
949
|
|
|
937
|
-
.prose :where(h2 code):not(:where([class~="not-prose"] *)) {
|
|
950
|
+
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
938
951
|
color: inherit;
|
|
939
952
|
font-size: 0.875em;
|
|
940
953
|
}
|
|
941
954
|
|
|
942
|
-
.prose :where(h3 code):not(:where([class~="not-prose"] *)) {
|
|
955
|
+
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
943
956
|
color: inherit;
|
|
944
957
|
font-size: 0.9em;
|
|
945
958
|
}
|
|
946
959
|
|
|
947
|
-
.prose :where(h4 code):not(:where([class~="not-prose"] *)) {
|
|
960
|
+
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
948
961
|
color: inherit;
|
|
949
962
|
}
|
|
950
963
|
|
|
951
|
-
.prose :where(blockquote code):not(:where([class~="not-prose"] *)) {
|
|
964
|
+
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
952
965
|
color: inherit;
|
|
953
966
|
}
|
|
954
967
|
|
|
955
|
-
.prose :where(thead th code):not(:where([class~="not-prose"] *)) {
|
|
968
|
+
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
956
969
|
color: inherit;
|
|
957
970
|
}
|
|
958
971
|
|
|
959
|
-
.prose :where(pre):not(:where([class~="not-prose"] *)) {
|
|
972
|
+
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
960
973
|
color: var(--tw-prose-pre-code);
|
|
961
974
|
background-color: var(--tw-prose-pre-bg);
|
|
962
975
|
overflow-x: auto;
|
|
@@ -972,7 +985,7 @@ select {
|
|
|
972
985
|
padding-left: 1.1428571em;
|
|
973
986
|
}
|
|
974
987
|
|
|
975
|
-
.prose :where(pre code):not(:where([class~="not-prose"] *)) {
|
|
988
|
+
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
976
989
|
background-color: transparent;
|
|
977
990
|
border-width: 0;
|
|
978
991
|
border-radius: 0;
|
|
@@ -984,15 +997,15 @@ select {
|
|
|
984
997
|
line-height: inherit;
|
|
985
998
|
}
|
|
986
999
|
|
|
987
|
-
.prose :where(pre code):not(:where([class~="not-prose"] *))::before {
|
|
1000
|
+
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
|
|
988
1001
|
content: none;
|
|
989
1002
|
}
|
|
990
1003
|
|
|
991
|
-
.prose :where(pre code):not(:where([class~="not-prose"] *))::after {
|
|
1004
|
+
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
|
|
992
1005
|
content: none;
|
|
993
1006
|
}
|
|
994
1007
|
|
|
995
|
-
.prose :where(table):not(:where([class~="not-prose"] *)) {
|
|
1008
|
+
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
996
1009
|
width: 100%;
|
|
997
1010
|
table-layout: auto;
|
|
998
1011
|
text-align: left;
|
|
@@ -1002,12 +1015,12 @@ select {
|
|
|
1002
1015
|
line-height: 1.7142857;
|
|
1003
1016
|
}
|
|
1004
1017
|
|
|
1005
|
-
.prose :where(thead):not(:where([class~="not-prose"] *)) {
|
|
1018
|
+
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1006
1019
|
border-bottom-width: 1px;
|
|
1007
1020
|
border-bottom-color: var(--tw-prose-th-borders);
|
|
1008
1021
|
}
|
|
1009
1022
|
|
|
1010
|
-
.prose :where(thead th):not(:where([class~="not-prose"] *)) {
|
|
1023
|
+
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1011
1024
|
color: var(--tw-prose-headings);
|
|
1012
1025
|
font-weight: 600;
|
|
1013
1026
|
vertical-align: bottom;
|
|
@@ -1016,28 +1029,40 @@ select {
|
|
|
1016
1029
|
padding-left: 0.5714286em;
|
|
1017
1030
|
}
|
|
1018
1031
|
|
|
1019
|
-
.prose :where(tbody tr):not(:where([class~="not-prose"] *)) {
|
|
1032
|
+
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1020
1033
|
border-bottom-width: 1px;
|
|
1021
1034
|
border-bottom-color: var(--tw-prose-td-borders);
|
|
1022
1035
|
}
|
|
1023
1036
|
|
|
1024
|
-
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)) {
|
|
1037
|
+
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1025
1038
|
border-bottom-width: 0;
|
|
1026
1039
|
}
|
|
1027
1040
|
|
|
1028
|
-
.prose :where(tbody td):not(:where([class~="not-prose"] *)) {
|
|
1041
|
+
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1029
1042
|
vertical-align: baseline;
|
|
1030
1043
|
}
|
|
1031
1044
|
|
|
1032
|
-
.prose :where(tfoot):not(:where([class~="not-prose"] *)) {
|
|
1045
|
+
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1033
1046
|
border-top-width: 1px;
|
|
1034
1047
|
border-top-color: var(--tw-prose-th-borders);
|
|
1035
1048
|
}
|
|
1036
1049
|
|
|
1037
|
-
.prose :where(tfoot td):not(:where([class~="not-prose"] *)) {
|
|
1050
|
+
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1038
1051
|
vertical-align: top;
|
|
1039
1052
|
}
|
|
1040
1053
|
|
|
1054
|
+
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1055
|
+
margin-top: 0;
|
|
1056
|
+
margin-bottom: 0;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1060
|
+
color: var(--tw-prose-captions);
|
|
1061
|
+
font-size: 0.875em;
|
|
1062
|
+
line-height: 1.4285714;
|
|
1063
|
+
margin-top: 0.8571429em;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1041
1066
|
.prose {
|
|
1042
1067
|
--tw-prose-body: #374151;
|
|
1043
1068
|
--tw-prose-headings: #111827;
|
|
@@ -1050,6 +1075,8 @@ select {
|
|
|
1050
1075
|
--tw-prose-quotes: #111827;
|
|
1051
1076
|
--tw-prose-quote-borders: #e5e7eb;
|
|
1052
1077
|
--tw-prose-captions: #6b7280;
|
|
1078
|
+
--tw-prose-kbd: #111827;
|
|
1079
|
+
--tw-prose-kbd-shadows: 17 24 39;
|
|
1053
1080
|
--tw-prose-code: #111827;
|
|
1054
1081
|
--tw-prose-pre-code: #e5e7eb;
|
|
1055
1082
|
--tw-prose-pre-bg: #1f2937;
|
|
@@ -1066,6 +1093,8 @@ select {
|
|
|
1066
1093
|
--tw-prose-invert-quotes: #f3f4f6;
|
|
1067
1094
|
--tw-prose-invert-quote-borders: #374151;
|
|
1068
1095
|
--tw-prose-invert-captions: #9ca3af;
|
|
1096
|
+
--tw-prose-invert-kbd: #fff;
|
|
1097
|
+
--tw-prose-invert-kbd-shadows: 255 255 255;
|
|
1069
1098
|
--tw-prose-invert-code: #fff;
|
|
1070
1099
|
--tw-prose-invert-pre-code: #d1d5db;
|
|
1071
1100
|
--tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
|
|
@@ -1075,99 +1104,114 @@ select {
|
|
|
1075
1104
|
line-height: 1.75;
|
|
1076
1105
|
}
|
|
1077
1106
|
|
|
1078
|
-
.prose :where(
|
|
1079
|
-
margin-top:
|
|
1080
|
-
margin-bottom:
|
|
1107
|
+
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1108
|
+
margin-top: 0;
|
|
1109
|
+
margin-bottom: 0;
|
|
1081
1110
|
}
|
|
1082
1111
|
|
|
1083
|
-
.prose :where(
|
|
1112
|
+
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1084
1113
|
margin-top: 2em;
|
|
1085
1114
|
margin-bottom: 2em;
|
|
1086
1115
|
}
|
|
1087
1116
|
|
|
1088
|
-
.prose :where(li):not(:where([class~="not-prose"] *)) {
|
|
1117
|
+
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1089
1118
|
margin-top: 0.5em;
|
|
1090
1119
|
margin-bottom: 0.5em;
|
|
1091
1120
|
}
|
|
1092
1121
|
|
|
1093
|
-
.prose :where(ol > li):not(:where([class~="not-prose"] *)) {
|
|
1122
|
+
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1094
1123
|
padding-left: 0.375em;
|
|
1095
1124
|
}
|
|
1096
1125
|
|
|
1097
|
-
.prose :where(ul > li):not(:where([class~="not-prose"] *)) {
|
|
1126
|
+
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1098
1127
|
padding-left: 0.375em;
|
|
1099
1128
|
}
|
|
1100
1129
|
|
|
1101
|
-
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
|
|
1130
|
+
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1102
1131
|
margin-top: 0.75em;
|
|
1103
1132
|
margin-bottom: 0.75em;
|
|
1104
1133
|
}
|
|
1105
1134
|
|
|
1106
|
-
.prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1135
|
+
.prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1107
1136
|
margin-top: 1.25em;
|
|
1108
1137
|
}
|
|
1109
1138
|
|
|
1110
|
-
.prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1139
|
+
.prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1111
1140
|
margin-bottom: 1.25em;
|
|
1112
1141
|
}
|
|
1113
1142
|
|
|
1114
|
-
.prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
|
|
1143
|
+
.prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1115
1144
|
margin-top: 1.25em;
|
|
1116
1145
|
}
|
|
1117
1146
|
|
|
1118
|
-
.prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
|
|
1147
|
+
.prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1119
1148
|
margin-bottom: 1.25em;
|
|
1120
1149
|
}
|
|
1121
1150
|
|
|
1122
|
-
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
|
|
1151
|
+
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1123
1152
|
margin-top: 0.75em;
|
|
1124
1153
|
margin-bottom: 0.75em;
|
|
1125
1154
|
}
|
|
1126
1155
|
|
|
1127
|
-
.prose :where(
|
|
1156
|
+
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1157
|
+
margin-top: 1.25em;
|
|
1158
|
+
margin-bottom: 1.25em;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1162
|
+
margin-top: 0.5em;
|
|
1163
|
+
padding-left: 1.625em;
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1128
1167
|
margin-top: 0;
|
|
1129
1168
|
}
|
|
1130
1169
|
|
|
1131
|
-
.prose :where(h2 + *):not(:where([class~="not-prose"] *)) {
|
|
1170
|
+
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1132
1171
|
margin-top: 0;
|
|
1133
1172
|
}
|
|
1134
1173
|
|
|
1135
|
-
.prose :where(h3 + *):not(:where([class~="not-prose"] *)) {
|
|
1174
|
+
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1136
1175
|
margin-top: 0;
|
|
1137
1176
|
}
|
|
1138
1177
|
|
|
1139
|
-
.prose :where(h4 + *):not(:where([class~="not-prose"] *)) {
|
|
1178
|
+
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1140
1179
|
margin-top: 0;
|
|
1141
1180
|
}
|
|
1142
1181
|
|
|
1143
|
-
.prose :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
|
|
1182
|
+
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1144
1183
|
padding-left: 0;
|
|
1145
1184
|
}
|
|
1146
1185
|
|
|
1147
|
-
.prose :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
|
|
1186
|
+
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1148
1187
|
padding-right: 0;
|
|
1149
1188
|
}
|
|
1150
1189
|
|
|
1151
|
-
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
|
|
1190
|
+
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1152
1191
|
padding-top: 0.5714286em;
|
|
1153
1192
|
padding-right: 0.5714286em;
|
|
1154
1193
|
padding-bottom: 0.5714286em;
|
|
1155
1194
|
padding-left: 0.5714286em;
|
|
1156
1195
|
}
|
|
1157
1196
|
|
|
1158
|
-
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) {
|
|
1197
|
+
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1159
1198
|
padding-left: 0;
|
|
1160
1199
|
}
|
|
1161
1200
|
|
|
1162
|
-
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) {
|
|
1201
|
+
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1163
1202
|
padding-right: 0;
|
|
1164
1203
|
}
|
|
1165
1204
|
|
|
1166
|
-
.prose :where(
|
|
1205
|
+
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1206
|
+
margin-top: 2em;
|
|
1207
|
+
margin-bottom: 2em;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1167
1211
|
margin-top: 0;
|
|
1168
1212
|
}
|
|
1169
1213
|
|
|
1170
|
-
.prose :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
|
|
1214
|
+
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
1171
1215
|
margin-bottom: 0;
|
|
1172
1216
|
}
|
|
1173
1217
|
|