diff --git a/404.html b/404.html index 66bfd9f2..d53f5d03 100644 --- a/404.html +++ b/404.html @@ -21,7 +21,7 @@ InvenTree | Intuitive Inventory Management - + diff --git a/SchrodingersGat/inventree-brother-plugin.html b/SchrodingersGat/inventree-brother-plugin.html index af4e97ba..98cc1dc4 100644 --- a/SchrodingersGat/inventree-brother-plugin.html +++ b/SchrodingersGat/inventree-brother-plugin.html @@ -21,7 +21,7 @@ Inventree Brother Plugin | InvenTree - + @@ -31,11 +31,11 @@ - + +{"@context":"https://schema.org","@type":"BlogPosting","author":{"@type":"Person","name":"SchrodingersGat"},"dateModified":"2023-04-18T17:44:56+00:00","datePublished":"2023-04-18T17:44:56+00:00","description":"Brother label printer plugin for InvenTree","headline":"Inventree Brother Plugin","mainEntityOfPage":{"@type":"WebPage","@id":"/SchrodingersGat/inventree-brother-plugin"},"url":"/SchrodingersGat/inventree-brother-plugin"} diff --git a/SergeoLacruz.html b/SergeoLacruz.html index f258bff9..aa0b2216 100644 --- a/SergeoLacruz.html +++ b/SergeoLacruz.html @@ -21,7 +21,7 @@ Sergeolacruz | InvenTree - + @@ -30,11 +30,11 @@ - + +{"@context":"https://schema.org","@type":"BlogPosting","dateModified":"2023-04-18T17:44:56+00:00","datePublished":"2023-04-18T17:44:56+00:00","description":"Hardware engineer in Germany and vintage fan.","headline":"Sergeolacruz","mainEntityOfPage":{"@type":"WebPage","@id":"/SergeoLacruz"},"url":"/SergeoLacruz"} diff --git a/SergeoLacruz/inventree-zebra-plugin.html b/SergeoLacruz/inventree-zebra-plugin.html index 736c70e5..b3ad3e6c 100644 --- a/SergeoLacruz/inventree-zebra-plugin.html +++ b/SergeoLacruz/inventree-zebra-plugin.html @@ -21,7 +21,7 @@ Inventree Zebra Plugin | InvenTree - + @@ -31,11 +31,11 @@ - + +{"@context":"https://schema.org","@type":"BlogPosting","author":{"@type":"Person","name":"SergeoLacruz"},"dateModified":"2023-04-18T17:44:56+00:00","datePublished":"2023-04-18T17:44:56+00:00","description":"Zebra Label Printer Plugin for Inventree","headline":"Inventree Zebra Plugin","mainEntityOfPage":{"@type":"WebPage","@id":"/SergeoLacruz/inventree-zebra-plugin"},"url":"/SergeoLacruz/inventree-zebra-plugin"} @@ -132,14 +132,14 @@ need to be like that. The values are found in the UI as shown in the pictures be

Then we add the configuration parameters.

SETTINGS = {
         'CONNECTION': {
-            'name': _('Printer Interface'),
-            'description': _('Select local or network printer'),
+            'name': _('Printer Interface'),
+            'description': _('Select local or network printer'),
             'choices': [('local','Local printer e.g. USB'),('network','Network printer with IP address')],
             'default': 'local',
         },
         'PORT': {
-            'name': _('Port'),
-            'description': _('Network port in case of network printer'),
+            'name': _('Port'),
+            'description': _('Network port in case of network printer'),
             'default': '9100',
         },
     }
@@ -152,7 +152,7 @@ Instead of ta simple test we can also use choices. The first string like “loca
 one is the description in the UI. 
 After that we need to define a function:

-
def print_label(self, **kwargs){
+
def print_label(self, **kwargs){
 

The kwargs is a dict with the following keys:

@@ -171,16 +171,16 @@ After that we need to define a function:

The PIL object is a greyscale image. Because the printer can just print pure BW we convert this to a BW picture.

fn = lambda x : 255 if x > Threshold else 0
-label_image = label_image.convert('L').point(fn, mode='1')
+label_image = label_image.convert('L').point(fn, mode='1')
 

The threshold can by modified by a plugin parameter. 200 is a good starting value. This trick gives much better prints. We can put the result this directly into the zpl library.

-
l = zpl.Label(50,30,8)
-l.origin(0, 0)
-l.write_graphic(label_image, 50)
-l.endorigin()
+
l = zpl.Label(50,30,8)
+l.origin(0, 0)
+l.write_graphic(label_image, 50)
+l.endorigin()
 

50,30 is the size of the label in millimeters. The third parameter is the resolution of the printer in diff --git a/about/index.html b/about/index.html index 51223b46..e15a763d 100644 --- a/about/index.html +++ b/about/index.html @@ -21,7 +21,7 @@ About | InvenTree - + diff --git a/about/team.html b/about/team.html index 323f68e1..7914b687 100644 --- a/about/team.html +++ b/about/team.html @@ -21,7 +21,7 @@ Team | InvenTree - + diff --git a/alternatives/index.html b/alternatives/index.html index a1360e56..a20527ef 100644 --- a/alternatives/index.html +++ b/alternatives/index.html @@ -21,7 +21,7 @@ Alternatives | InvenTree - + diff --git a/assets/index.css b/assets/index.css index 1ddcd362..cf716bbf 100644 --- a/assets/index.css +++ b/assets/index.css @@ -1,3 +1 @@ -/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com*/ - -/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */html{-webkit-text-size-adjust:100%;line-height:1.15;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;margin:0}hr{color:inherit;height:0}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}legend{padding:0}progress{vertical-align:baseline}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}body{font-family:inherit;line-height:inherit}*,:after,:before{border:0 solid;box-sizing:border-box}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{color:inherit;line-height:inherit;padding:0}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{--tw-border-opacity:1;border-color:rgba(229,231,235,var(--tw-border-opacity))}.container{width:100%}@media (min-width:470px){.container{max-width:470px}}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}article{color:#374151;max-width:65ch}article [class~=lead]{color:#4b5563;font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}article a{color:#111827;font-weight:500;text-decoration:underline}article strong{color:#111827;font-weight:600}article ol[type=A]{--list-counter-style:upper-alpha}article ol[type=a]{--list-counter-style:lower-alpha}article ol[type=A s]{--list-counter-style:upper-alpha}article ol[type=a s]{--list-counter-style:lower-alpha}article ol[type=I]{--list-counter-style:upper-roman}article ol[type=i]{--list-counter-style:lower-roman}article ol[type=I s]{--list-counter-style:upper-roman}article ol[type=i s]{--list-counter-style:lower-roman}article ol[type="1"]{--list-counter-style:decimal}article ol>li{padding-left:1.75em;position:relative}article ol>li:before{color:#6b7280;content:counter(list-item,var(--list-counter-style,decimal)) ".";font-weight:400;position:absolute}article ul>li{padding-left:1.75em;position:relative}article ul>li:before{background-color:#d1d5db;border-radius:50%;content:"";height:.375em;left:.25em;position:absolute;top:.6875em;width:.375em}article hr{border-color:#e5e7eb;border-top-width:1px;margin-bottom:3em;margin-top:3em}article blockquote{border-left-color:#e5e7eb;border-left-width:.25rem;color:#111827;font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-left:1em;quotes:"\201C""\201D""\2018""\2019"}article blockquote p:first-of-type:before{content:open-quote}article blockquote p:last-of-type:after{content:close-quote}article h1{color:#111827;font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em}article h2{color:#111827;font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}article h3{font-size:1.25em;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}article h3,article h4{color:#111827;font-weight:600}article h4{line-height:1.5;margin-bottom:.5em;margin-top:1.5em}article figure figcaption{color:#6b7280;font-size:.875em;line-height:1.4285714;margin-top:.8571429em}article code{color:#111827;font-size:.875em;font-weight:600}article code:after,article code:before{content:"`"}article a code{color:#111827}article pre{background-color:#1f2937;border-radius:.375rem;color:#e5e7eb;font-size:.875em;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding:.8571429em 1.1428571em}article pre code{background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:400;line-height:inherit;padding:0}article pre code:after,article pre code:before{content:none}article table{font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;text-align:left;width:100%}article thead{border-bottom-color:#d1d5db;border-bottom-width:1px;color:#111827;font-weight:600}article thead th{padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em;vertical-align:bottom}article tbody tr{border-bottom-color:#e5e7eb;border-bottom-width:1px}article tbody tr:last-child{border-bottom-width:0}article tbody td{padding:.5714286em;vertical-align:top}article{font-size:1rem;line-height:1.75}article p{margin-bottom:1.25em;margin-top:1.25em}article figure,article img,article video{margin-bottom:2em;margin-top:2em}article h2 code{font-size:.875em}article h3 code{font-size:.9em}article ol,article ul{margin-bottom:1.25em;margin-top:1.25em}article li{margin-bottom:.5em;margin-top:.5em}article>ul>li p{margin-bottom:.75em;margin-top:.75em}article>ul>li>:first-child{margin-top:1.25em}article>ul>li>:last-child{margin-bottom:1.25em}article>ol>li>:first-child{margin-top:1.25em}article>ol>li>:last-child{margin-bottom:1.25em}article ol ol,article ol ul,article ul ol,article ul ul{margin-bottom:.75em;margin-top:.75em}article{font-size:.875rem;line-height:1.7142857}article p{margin-bottom:1.1428571em;margin-top:1.1428571em}article [class~=lead]{font-size:1.2857143em;line-height:1.5555556;margin-bottom:.8888889em;margin-top:.8888889em}article blockquote{margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.1111111em}article h1{font-size:2.1428571em;line-height:1.2;margin-bottom:.8em;margin-top:0}article h2{font-size:1.4285714em;line-height:1.4;margin-bottom:.8em;margin-top:1.6em}article h3{font-size:1.2857143em;line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.5555556em}article h4{line-height:1.4285714;margin-bottom:.5714286em;margin-top:1.4285714em}article figure,article img,article video{margin-bottom:1.7142857em;margin-top:1.7142857em}article figure>*{margin-bottom:0;margin-top:0}article figure figcaption{font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}article code{font-size:.8571429em}article h2 code{font-size:.9em}article h3 code{font-size:.8888889em}article pre{border-radius:.25rem;font-size:.8571429em;line-height:1.6666667;margin-bottom:1.6666667em;margin-top:1.6666667em;padding:.6666667em 1em}article ol,article ul{margin-bottom:1.1428571em;margin-top:1.1428571em}article li{margin-bottom:.2857143em;margin-top:.2857143em}article ol>li{padding-left:1.5714286em}article ol>li:before{left:0}article ul>li{padding-left:1.5714286em}article ul>li:before{height:.3571429em;left:.2142857em;top:.67857em;width:.3571429em}article>ul>li p{margin-bottom:.5714286em;margin-top:.5714286em}article>ul>li>:first-child{margin-top:1.1428571em}article>ul>li>:last-child{margin-bottom:1.1428571em}article>ol>li>:first-child{margin-top:1.1428571em}article>ol>li>:last-child{margin-bottom:1.1428571em}article ol ol,article ol ul,article ul ol,article ul ul{margin-bottom:.5714286em;margin-top:.5714286em}article hr{margin-bottom:2.8571429em;margin-top:2.8571429em}article h2+*,article h3+*,article h4+*,article hr+*{margin-top:0}article table{font-size:.8571429em;line-height:1.5}article thead th{padding-bottom:.6666667em;padding-left:1em;padding-right:1em}article thead th:first-child{padding-left:0}article thead th:last-child{padding-right:0}article tbody td{padding:.6666667em 1em}article tbody td:first-child{padding-left:0}article tbody td:last-child{padding-right:0}article>:first-child{margin-top:0}article>:last-child{margin-bottom:0}article{margin:1.25rem}@media (min-width:640px){article{color:#374151;max-width:65ch}article [class~=lead]{color:#4b5563;font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}article a{color:#111827;font-weight:500;text-decoration:underline}article strong{color:#111827;font-weight:600}article ol[type=A]{--list-counter-style:upper-alpha}article ol[type=a]{--list-counter-style:lower-alpha}article ol[type=A s]{--list-counter-style:upper-alpha}article ol[type=a s]{--list-counter-style:lower-alpha}article ol[type=I]{--list-counter-style:upper-roman}article ol[type=i]{--list-counter-style:lower-roman}article ol[type=I s]{--list-counter-style:upper-roman}article ol[type=i s]{--list-counter-style:lower-roman}article ol[type="1"]{--list-counter-style:decimal}article ol>li{padding-left:1.75em;position:relative}article ol>li:before{color:#6b7280;content:counter(list-item,var(--list-counter-style,decimal)) ".";font-weight:400;left:0;position:absolute}article ul>li{padding-left:1.75em;position:relative}article ul>li:before{background-color:#d1d5db;border-radius:50%;content:"";height:.375em;left:.25em;position:absolute;top:.6875em;width:.375em}article hr{border-color:#e5e7eb;border-top-width:1px;margin-bottom:3em;margin-top:3em}article blockquote{border-left-color:#e5e7eb;border-left-width:.25rem;color:#111827;font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-left:1em;quotes:"\201C""\201D""\2018""\2019"}article blockquote p:first-of-type:before{content:open-quote}article blockquote p:last-of-type:after{content:close-quote}article h1{color:#111827;font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}article h2{color:#111827;font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}article h3{font-size:1.25em;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}article h3,article h4{color:#111827;font-weight:600}article h4{line-height:1.5;margin-bottom:.5em;margin-top:1.5em}article figure figcaption{color:#6b7280;font-size:.875em;line-height:1.4285714;margin-top:.8571429em}article code{color:#111827;font-size:.875em;font-weight:600}article code:after,article code:before{content:"`"}article a code{color:#111827}article pre{background-color:#1f2937;border-radius:.375rem;color:#e5e7eb;font-size:.875em;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding:.8571429em 1.1428571em}article pre code{background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:400;line-height:inherit;padding:0}article pre code:after,article pre code:before{content:none}article table{font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;text-align:left;width:100%}article thead{border-bottom-color:#d1d5db;border-bottom-width:1px;color:#111827;font-weight:600}article thead th{padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em;vertical-align:bottom}article tbody tr{border-bottom-color:#e5e7eb;border-bottom-width:1px}article tbody tr:last-child{border-bottom-width:0}article tbody td{padding:.5714286em;vertical-align:top}article{font-size:1rem;line-height:1.75}article p{margin-bottom:1.25em;margin-top:1.25em}article figure,article img,article video{margin-bottom:2em;margin-top:2em}article figure>*{margin-bottom:0;margin-top:0}article h2 code{font-size:.875em}article h3 code{font-size:.9em}article ol,article ul{margin-bottom:1.25em;margin-top:1.25em}article li{margin-bottom:.5em;margin-top:.5em}article>ul>li p{margin-bottom:.75em;margin-top:.75em}article>ul>li>:first-child{margin-top:1.25em}article>ul>li>:last-child{margin-bottom:1.25em}article>ol>li>:first-child{margin-top:1.25em}article>ol>li>:last-child{margin-bottom:1.25em}article ol ol,article ol ul,article ul ol,article ul ul{margin-bottom:.75em;margin-top:.75em}article h2+*,article h3+*,article h4+*,article hr+*{margin-top:0}article thead th:first-child{padding-left:0}article thead th:last-child{padding-right:0}article tbody td:first-child{padding-left:0}article tbody td:last-child{padding-right:0}article>:first-child{margin-top:0}article>:last-child{margin-bottom:0}article{margin-left:auto;margin-right:auto}}@media (min-width:1024px){article{font-size:1.125rem;line-height:1.7777778}article p{margin-bottom:1.3333333em;margin-top:1.3333333em}article [class~=lead]{font-size:1.2222222em;line-height:1.4545455;margin-bottom:1.0909091em;margin-top:1.0909091em}article blockquote{margin-bottom:1.6666667em;margin-top:1.6666667em;padding-left:1em}article h1{font-size:2.6666667em;line-height:1;margin-bottom:.8333333em;margin-top:0}article h2{font-size:1.6666667em;line-height:1.3333333;margin-bottom:1.0666667em;margin-top:1.8666667em}article h3{font-size:1.3333333em;line-height:1.5;margin-bottom:.6666667em;margin-top:1.6666667em}article h4{line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.7777778em}article figure,article img,article video{margin-bottom:1.7777778em;margin-top:1.7777778em}article figure>*{margin-bottom:0;margin-top:0}article figure figcaption{font-size:.8888889em;line-height:1.5;margin-top:1em}article code{font-size:.8888889em}article h2 code{font-size:.8666667em}article h3 code{font-size:.875em}article pre{border-radius:.375rem;font-size:.8888889em;line-height:1.75;margin-bottom:2em;margin-top:2em;padding:1em 1.5em}article ol,article ul{margin-bottom:1.3333333em;margin-top:1.3333333em}article li{margin-bottom:.6666667em;margin-top:.6666667em}article ol>li{padding-left:1.6666667em}article ol>li:before{left:0}article ul>li{padding-left:1.6666667em}article ul>li:before{height:.3333333em;left:.2222222em;top:.72222em;width:.3333333em}article>ul>li p{margin-bottom:.8888889em;margin-top:.8888889em}article>ul>li>:first-child{margin-top:1.3333333em}article>ul>li>:last-child{margin-bottom:1.3333333em}article>ol>li>:first-child{margin-top:1.3333333em}article>ol>li>:last-child{margin-bottom:1.3333333em}article ol ol,article ol ul,article ul ol,article ul ul{margin-bottom:.8888889em;margin-top:.8888889em}article hr{margin-bottom:3.1111111em;margin-top:3.1111111em}article h2+*,article h3+*,article h4+*,article hr+*{margin-top:0}article table{font-size:.8888889em;line-height:1.5}article thead th{padding-bottom:.75em;padding-left:.75em;padding-right:.75em}article thead th:first-child{padding-left:0}article thead th:last-child{padding-right:0}article tbody td{padding:.75em}article tbody td:first-child{padding-left:0}article tbody td:last-child{padding-right:0}article>:first-child{margin-top:0}article>:last-child{margin-bottom:0}}@media (min-width:1280px){article{font-size:1.25rem;line-height:1.8}article p{margin-bottom:1.2em;margin-top:1.2em}article [class~=lead]{font-size:1.2em;line-height:1.5;margin-bottom:1em;margin-top:1em}article blockquote{margin-bottom:1.6em;margin-top:1.6em;padding-left:1.0666667em}article h1{font-size:2.8em;line-height:1;margin-bottom:.8571429em;margin-top:0}article h2{font-size:1.8em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:1.5555556em}article h3{font-size:1.5em;line-height:1.3333333;margin-bottom:.6666667em;margin-top:1.6em}article h4{line-height:1.6;margin-bottom:.6em;margin-top:1.8em}article figure,article img,article video{margin-bottom:2em;margin-top:2em}article figure>*{margin-bottom:0;margin-top:0}article figure figcaption{font-size:.9em;line-height:1.5555556;margin-top:1em}article code{font-size:.9em}article h2 code{font-size:.8611111em}article h3 code,article pre{font-size:.9em}article pre{border-radius:.5rem;line-height:1.7777778;margin-bottom:2em;margin-top:2em;padding:1.1111111em 1.3333333em}article ol,article ul{margin-bottom:1.2em;margin-top:1.2em}article li{margin-bottom:.6em;margin-top:.6em}article ol>li{padding-left:1.8em}article ol>li:before{left:0}article ul>li{padding-left:1.8em}article ul>li:before{height:.35em;left:.25em;top:.725em;width:.35em}article>ul>li p{margin-bottom:.8em;margin-top:.8em}article>ul>li>:first-child{margin-top:1.2em}article>ul>li>:last-child{margin-bottom:1.2em}article>ol>li>:first-child{margin-top:1.2em}article>ol>li>:last-child{margin-bottom:1.2em}article ol ol,article ol ul,article ul ol,article ul ul{margin-bottom:.8em;margin-top:.8em}article hr{margin-bottom:2.8em;margin-top:2.8em}article h2+*,article h3+*,article h4+*,article hr+*{margin-top:0}article table{font-size:.9em;line-height:1.5555556}article thead th{padding-bottom:.8888889em;padding-left:.6666667em;padding-right:.6666667em}article thead th:first-child{padding-left:0}article thead th:last-child{padding-right:0}article tbody td{padding:.8888889em .6666667em}article tbody td:first-child{padding-left:0}article tbody td:last-child{padding-right:0}article>:first-child{margin-top:0}article>:last-child{margin-bottom:0}}.section-container{width:100%}@media (min-width:470px){.section-container{max-width:470px}}@media (min-width:640px){.section-container{max-width:640px}}@media (min-width:768px){.section-container{max-width:768px}}@media (min-width:1024px){.section-container{max-width:1024px}}@media (min-width:1280px){.section-container{max-width:1280px}}@media (min-width:1536px){.section-container{max-width:1536px}}.section-container{margin-left:auto;margin-right:auto;padding:6rem 1.25rem}.header-text{font-size:1.5rem;font-weight:500;line-height:2rem}@media (min-width:640px){.header-text{font-size:1.875rem;line-height:2.25rem}}.footer-link{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}.footer-link:hover{--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity))}.footer-categorie{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity));font-size:.875rem;font-weight:500;letter-spacing:.1em;line-height:1.25rem;margin-bottom:.75rem}.cm-hvr-btn{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity));border-radius:.25rem}.cm-hvr-btn:hover{--tw-bg-opacity:1;background-color:rgba(229,231,235,var(--tw-bg-opacity))}.cm-hvr-btn{--tw-text-opacity:1;color:rgba(55,65,81,var(--tw-text-opacity))}.cm-hvr-btn-primary{--tw-bg-opacity:1;background-color:rgba(221,188,145,var(--tw-bg-opacity));border-radius:.25rem}.cm-hvr-btn-primary:hover{--tw-bg-opacity:1;background-color:rgba(144,168,216,var(--tw-bg-opacity))}.cm-hvr-btn-primary{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.cm-gray-1{--tw-text-opacity:1;color:rgba(17,24,39,var(--tw-text-opacity))}.cm-gray-2{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}.cm-gray-3{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}a.anchor{display:block;position:relative;top:-72px;visibility:hidden}.content a{color:#111827;font-weight:500;text-decoration:underline}.color-link{--tw-text-opacity:1;color:rgba(221,188,145,var(--tw-text-opacity))}.badge{border-radius:9999px;padding:.25rem .625rem}.list-unstyled,.list-unstyled li{list-style-type:none;padding-left:0;position:static}.plugin_cat{background-color:rgba(245,158,11,var(--tw-bg-opacity))}.plugin_cat,.plugin_tag{--tw-bg-opacity:1;border-radius:9999px;padding:.25rem .625rem;white-space:nowrap}.plugin_tag{background-color:rgba(96,165,250,var(--tw-bg-opacity))}.max-w-p90{max-width:90%}img+em{display:block;text-align:center}.plugin_links{font-style:italic;margin-bottom:0}.anchor{display:block;position:relative;top:-4.5rem;visibility:hidden}.static{position:static}.sticky{position:-webkit-sticky;position:sticky}.top-0{top:0}.z-50{z-index:50}.m-5{margin:1.25rem}.-m-4{margin:-1rem}.mx-auto{margin-left:auto;margin-right:auto}.my-0{margin-bottom:0;margin-top:0}.mt-2{margin-top:.5rem}.mt-4{margin-top:1rem}.mt-10{margin-top:2.5rem}.mr-2{margin-right:.5rem}.mr-4{margin-right:1rem}.mr-5{margin-right:1.25rem}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb-10{margin-bottom:2.5rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-20{margin-bottom:5rem}.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.block{display:block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.contents{display:contents}.hidden{display:none}.h-1{height:.25rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-8{height:2rem}.h-12{height:3rem}.h-full{height:100%}.min-h-screen{min-height:100vh}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-12{width:3rem}.w-20{width:5rem}.w-64{width:16rem}.w-1\/2{width:50%}.w-5\/6{width:83.333333%}.w-full{width:100%}.flex-none{flex:none}.flex-shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}@-webkit-keyframes spin{to{transform:rotate(1turn)}}@keyframes spin{to{transform:rotate(1turn)}}@-webkit-keyframes ping{75%,to{opacity:0;transform:scale(2)}}@keyframes ping{75%,to{opacity:0;transform:scale(2)}}@-webkit-keyframes pulse{50%{opacity:.5}}@keyframes pulse{50%{opacity:.5}}@-webkit-keyframes bounce{0%,to{-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}@keyframes bounce{0%,to{-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}.list-none{list-style-type:none}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-center{justify-content:center}.self-center{align-self:center}.overflow-hidden,.truncate{overflow:hidden}.truncate{text-overflow:ellipsis;white-space:nowrap}.rounded{border-radius:.25rem}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.rounded-b{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.border-0{border-width:0}.border{border-width:1px}.border-t-4{border-top-width:4px}.bg-gray-100{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity))}.bg-secondary{--tw-bg-opacity:1;background-color:rgba(221,188,145,var(--tw-bg-opacity))}.hover\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgba(229,231,235,var(--tw-bg-opacity))}.hover\:bg-primary:hover{--tw-bg-opacity:1;background-color:rgba(144,168,216,var(--tw-bg-opacity))}.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.from-white{--tw-gradient-from:#fff;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,hsla(0,0%,100%,0))}.from-primary{--tw-gradient-from:#90a8d8;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(144,168,216,0))}.to-secondary{--tw-gradient-to:#ddbc91}.bg-clip-text{-webkit-background-clip:text;background-clip:text}.fill-current{fill:currentColor}.object-cover{-o-object-fit:cover;object-fit:cover}.object-center{-o-object-position:center;object-position:center}.p-2{padding:.5rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-4{padding-bottom:1rem;padding-top:1rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.py-24{padding-bottom:6rem;padding-top:6rem}.pt-3{padding-top:.75rem}.pt-8{padding-top:2rem}.pb-1{padding-bottom:.25rem}.pl-4{padding-left:1rem}.text-center{text-align:center}.text-xs{font-size:.75rem;line-height:1rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem}.text-lg,.text-xl{line-height:1.75rem}.text-xl{font-size:1.25rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.font-normal{font-weight:400}.font-medium{font-weight:500}.font-bold{font-weight:700}.italic{font-style:italic}.leading-relaxed{line-height:1.625}.leading-loose{line-height:2}.tracking-widest{letter-spacing:.1em}.text-transparent{color:transparent}.text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.text-primary{--tw-text-opacity:1;color:rgba(144,168,216,var(--tw-text-opacity))}.text-secondary{--tw-text-opacity:1;color:rgba(221,188,145,var(--tw-text-opacity))}.no-underline{text-decoration:none}.hover\:underline:hover{text-decoration:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*,:after,:before{--tw-shadow:0 0 #0000}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.shadow-md,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}*,:after,:before{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000}@media (min-width:640px){.sm\:mt-0{margin-top:0}.sm\:ml-2{margin-left:.5rem}.sm\:ml-auto{margin-left:auto}.sm\:hidden{display:none}.sm\:w-1\/4{width:25%}.sm\:flex-row{flex-direction:row}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:pr-16{padding-right:4rem}.sm\:pl-8{padding-left:2rem}.sm\:text-left{text-align:left}.sm\:text-xl{font-size:1.25rem;line-height:1.75rem}.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}}@media (min-width:768px){.md\:mx-0{margin-left:0;margin-right:0}.md\:mt-0{margin-top:0}.md\:mr-4{margin-right:1rem}.md\:mr-auto{margin-right:auto}.md\:mb-0{margin-bottom:0}.md\:flex{display:flex}.md\:w-auto{width:auto}.md\:w-1\/2{width:50%}.md\:w-1\/4{width:25%}.md\:w-full{width:100%}.md\:flex-row{flex-direction:row}.md\:flex-nowrap{flex-wrap:nowrap}.md\:items-start{align-items:flex-start}.md\:justify-start{justify-content:flex-start}.md\:py-1{padding-bottom:.25rem;padding-top:.25rem}.md\:pr-16{padding-right:4rem}.md\:pl-10{padding-left:2.5rem}.md\:text-left{text-align:left}}@media (min-width:1024px){.lg\:mb-0{margin-bottom:0}.lg\:inline-block{display:inline-block}.lg\:w-1\/2{width:50%}.lg\:w-2\/3{width:66.666667%}.lg\:w-full{width:100%}.lg\:max-w-lg{max-width:32rem}.lg\:flex-grow{flex-grow:1}.lg\:pr-24{padding-right:6rem}}@media (min-width:1280px){.xl\:w-1\/3{width:33.333333%}.xl\:w-1\/4{width:25%}}@media (min-width:470px){.xs\:ml-4{margin-left:1rem}.xs\:flex-none{flex:none}.xs\:border-l{border-left-width:1px}.xs\:border-gray-400{--tw-border-opacity:1;border-color:rgba(156,163,175,var(--tw-border-opacity))}.xs\:pl-4{padding-left:1rem}} \ No newline at end of file +/*! tailwindcss v3.3.1 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-feature-settings:normal;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:470px){.container{max-width:470px}}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}article{color:var(--tw-prose-body);max-width:65ch}article :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}article :where([class~=lead]):not(:where([class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}article :where(a):not(:where([class~=not-prose] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}article :where(strong):not(:where([class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}article :where(a strong):not(:where([class~=not-prose] *)){color:inherit}article :where(blockquote strong):not(:where([class~=not-prose] *)){color:inherit}article :where(thead th strong):not(:where([class~=not-prose] *)){color:inherit}article :where(ol):not(:where([class~=not-prose] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}article :where(ol[type=A]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}article :where(ol[type=a]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}article :where(ol[type=A s]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}article :where(ol[type=a s]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}article :where(ol[type=I]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}article :where(ol[type=i]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}article :where(ol[type=I s]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}article :where(ol[type=i s]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}article :where(ol[type="1"]):not(:where([class~=not-prose] *)){list-style-type:decimal}article :where(ul):not(:where([class~=not-prose] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}article :where(ol>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}article :where(ul>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}article :where(hr):not(:where([class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-bottom:3em;margin-top:3em}article :where(blockquote):not(:where([class~=not-prose] *)){border-left-color:var(--tw-prose-quote-borders);border-left-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-left:1em;quotes:"\201C""\201D""\2018""\2019"}article :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):before{content:open-quote}article :where(blockquote p:last-of-type):not(:where([class~=not-prose] *)):after{content:close-quote}article :where(h1):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em}article :where(h1 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:900}article :where(h2):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}article :where(h2 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:800}article :where(h3):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}article :where(h3 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}article :where(h4):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}article :where(h4 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}article :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}article :where(figcaption):not(:where([class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}article :where(code):not(:where([class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}article :where(code):not(:where([class~=not-prose] *)):before{content:"`"}article :where(code):not(:where([class~=not-prose] *)):after{content:"`"}article :where(a code):not(:where([class~=not-prose] *)){color:inherit}article :where(h1 code):not(:where([class~=not-prose] *)){color:inherit}article :where(h2 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.875em}article :where(h3 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.9em}article :where(h4 code):not(:where([class~=not-prose] *)){color:inherit}article :where(blockquote code):not(:where([class~=not-prose] *)){color:inherit}article :where(thead th code):not(:where([class~=not-prose] *)){color:inherit}article :where(pre):not(:where([class~=not-prose] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding:.8571429em 1.1428571em}article :where(pre code):not(:where([class~=not-prose] *)){background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}article :where(pre code):not(:where([class~=not-prose] *)):before{content:none}article :where(pre code):not(:where([class~=not-prose] *)):after{content:none}article :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;text-align:left;width:100%}article :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}article :where(thead th):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em;vertical-align:bottom}article :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}article :where(tbody tr:last-child):not(:where([class~=not-prose] *)){border-bottom-width:0}article :where(tbody td):not(:where([class~=not-prose] *)){vertical-align:baseline}article :where(tfoot):not(:where([class~=not-prose] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}article :where(tfoot td):not(:where([class~=not-prose] *)){vertical-align:top}article{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}article :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}article :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}article :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}article :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}article :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}article :where(.prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}article :where(.prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}article :where(.prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}article :where(.prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}article :where(.prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}article :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}article :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.5714286em}article :where(.prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}article :where(.prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}article{font-size:.875rem;line-height:1.7142857}article :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em}article :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.8888889em;margin-top:.8888889em}article :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.1111111em}article :where(h1):not(:where([class~=not-prose] *)){font-size:2.1428571em;line-height:1.2;margin-bottom:.8em;margin-top:0}article :where(h2):not(:where([class~=not-prose] *)){font-size:1.4285714em;line-height:1.4;margin-bottom:.8em;margin-top:1.6em}article :where(h3):not(:where([class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.5555556em}article :where(h4):not(:where([class~=not-prose] *)){line-height:1.4285714;margin-bottom:.5714286em;margin-top:1.4285714em}article :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}article :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}article :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}article :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}article :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}article :where(code):not(:where([class~=not-prose] *)){font-size:.8571429em}article :where(h2 code):not(:where([class~=not-prose] *)){font-size:.9em}article :where(h3 code):not(:where([class~=not-prose] *)){font-size:.8888889em}article :where(pre):not(:where([class~=not-prose] *)){border-radius:.25rem;font-size:.8571429em;line-height:1.6666667;margin-bottom:1.6666667em;margin-top:1.6666667em;padding:.6666667em 1em}article :where(ol):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em;padding-left:1.5714286em}article :where(ul):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em;padding-left:1.5714286em}article :where(li):not(:where([class~=not-prose] *)){margin-bottom:.2857143em;margin-top:.2857143em}article :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}article :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4285714em}article :where(.prose-sm>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}article :where(.prose-sm>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}article :where(.prose-sm>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}article :where(.prose-sm>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.1428571em}article :where(.prose-sm>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.1428571em}article :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}article :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8571429em;margin-top:2.8571429em}article :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(table):not(:where([class~=not-prose] *)){font-size:.8571429em;line-height:1.5}article :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.6666667em;padding-left:1em;padding-right:1em}article :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}article :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}article :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.6666667em 1em}article :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}article :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}article :where(.prose-sm>:first-child):not(:where([class~=not-prose] *)){margin-top:0}article :where(.prose-sm>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}article{margin:1.25rem}@media (min-width:640px){article{color:var(--tw-prose-body);max-width:65ch}article :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}article :where([class~=lead]):not(:where([class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}article :where(a):not(:where([class~=not-prose] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}article :where(strong):not(:where([class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}article :where(a strong):not(:where([class~=not-prose] *)){color:inherit}article :where(blockquote strong):not(:where([class~=not-prose] *)){color:inherit}article :where(thead th strong):not(:where([class~=not-prose] *)){color:inherit}article :where(ol):not(:where([class~=not-prose] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}article :where(ol[type=A]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}article :where(ol[type=a]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}article :where(ol[type=A s]):not(:where([class~=not-prose] *)){list-style-type:upper-alpha}article :where(ol[type=a s]):not(:where([class~=not-prose] *)){list-style-type:lower-alpha}article :where(ol[type=I]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}article :where(ol[type=i]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}article :where(ol[type=I s]):not(:where([class~=not-prose] *)){list-style-type:upper-roman}article :where(ol[type=i s]):not(:where([class~=not-prose] *)){list-style-type:lower-roman}article :where(ol[type="1"]):not(:where([class~=not-prose] *)){list-style-type:decimal}article :where(ul):not(:where([class~=not-prose] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-left:1.625em}article :where(ol>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}article :where(ul>li):not(:where([class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}article :where(hr):not(:where([class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-bottom:3em;margin-top:3em}article :where(blockquote):not(:where([class~=not-prose] *)){border-left-color:var(--tw-prose-quote-borders);border-left-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-left:1em;quotes:"\201C""\201D""\2018""\2019"}article :where(blockquote p:first-of-type):not(:where([class~=not-prose] *)):before{content:open-quote}article :where(blockquote p:last-of-type):not(:where([class~=not-prose] *)):after{content:close-quote}article :where(h1):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}article :where(h1 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:900}article :where(h2):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}article :where(h2 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:800}article :where(h3):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}article :where(h3 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}article :where(h4):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}article :where(h4 strong):not(:where([class~=not-prose] *)){color:inherit;font-weight:700}article :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}article :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}article :where(figcaption):not(:where([class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}article :where(code):not(:where([class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}article :where(code):not(:where([class~=not-prose] *)):before{content:"`"}article :where(code):not(:where([class~=not-prose] *)):after{content:"`"}article :where(a code):not(:where([class~=not-prose] *)){color:inherit}article :where(h1 code):not(:where([class~=not-prose] *)){color:inherit}article :where(h2 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.875em}article :where(h3 code):not(:where([class~=not-prose] *)){color:inherit;font-size:.9em}article :where(h4 code):not(:where([class~=not-prose] *)){color:inherit}article :where(blockquote code):not(:where([class~=not-prose] *)){color:inherit}article :where(thead th code):not(:where([class~=not-prose] *)){color:inherit}article :where(pre):not(:where([class~=not-prose] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding:.8571429em 1.1428571em}article :where(pre code):not(:where([class~=not-prose] *)){background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}article :where(pre code):not(:where([class~=not-prose] *)):before{content:none}article :where(pre code):not(:where([class~=not-prose] *)):after{content:none}article :where(table):not(:where([class~=not-prose] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;text-align:left;width:100%}article :where(thead):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}article :where(thead th):not(:where([class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;padding-bottom:.5714286em;padding-left:.5714286em;padding-right:.5714286em;vertical-align:bottom}article :where(tbody tr):not(:where([class~=not-prose] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}article :where(tbody tr:last-child):not(:where([class~=not-prose] *)){border-bottom-width:0}article :where(tbody td):not(:where([class~=not-prose] *)){vertical-align:baseline}article :where(tfoot):not(:where([class~=not-prose] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}article :where(tfoot td):not(:where([class~=not-prose] *)){vertical-align:top}article{--tw-prose-body:#374151;--tw-prose-headings:#111827;--tw-prose-lead:#4b5563;--tw-prose-links:#111827;--tw-prose-bold:#111827;--tw-prose-counters:#6b7280;--tw-prose-bullets:#d1d5db;--tw-prose-hr:#e5e7eb;--tw-prose-quotes:#111827;--tw-prose-quote-borders:#e5e7eb;--tw-prose-captions:#6b7280;--tw-prose-code:#111827;--tw-prose-pre-code:#e5e7eb;--tw-prose-pre-bg:#1f2937;--tw-prose-th-borders:#d1d5db;--tw-prose-td-borders:#e5e7eb;--tw-prose-invert-body:#d1d5db;--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:#9ca3af;--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:#9ca3af;--tw-prose-invert-bullets:#4b5563;--tw-prose-invert-hr:#374151;--tw-prose-invert-quotes:#f3f4f6;--tw-prose-invert-quote-borders:#374151;--tw-prose-invert-captions:#9ca3af;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:#d1d5db;--tw-prose-invert-pre-bg:rgba(0,0,0,.5);--tw-prose-invert-th-borders:#4b5563;--tw-prose-invert-td-borders:#374151;font-size:1rem;line-height:1.75}article :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}article :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}article :where(li):not(:where([class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}article :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.375em}article :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.375em}article :where(.sm\:prose>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}article :where(.sm\:prose>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}article :where(.sm\:prose>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}article :where(.sm\:prose>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.25em}article :where(.sm\:prose>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.25em}article :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}article :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}article :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}article :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.5714286em}article :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}article :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}article :where(.sm\:prose>:first-child):not(:where([class~=not-prose] *)){margin-top:0}article :where(.sm\:prose>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}}@media (min-width:1024px){article{font-size:1.125rem;line-height:1.7777778}article :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em}article :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2222222em;line-height:1.4545455;margin-bottom:1.0909091em;margin-top:1.0909091em}article :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6666667em;margin-top:1.6666667em;padding-left:1em}article :where(h1):not(:where([class~=not-prose] *)){font-size:2.6666667em;line-height:1;margin-bottom:.8333333em;margin-top:0}article :where(h2):not(:where([class~=not-prose] *)){font-size:1.6666667em;line-height:1.3333333;margin-bottom:1.0666667em;margin-top:1.8666667em}article :where(h3):not(:where([class~=not-prose] *)){font-size:1.3333333em;line-height:1.5;margin-bottom:.6666667em;margin-top:1.6666667em}article :where(h4):not(:where([class~=not-prose] *)){line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.7777778em}article :where(img):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}article :where(video):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}article :where(figure):not(:where([class~=not-prose] *)){margin-bottom:1.7777778em;margin-top:1.7777778em}article :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}article :where(figcaption):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5;margin-top:1em}article :where(code):not(:where([class~=not-prose] *)){font-size:.8888889em}article :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8666667em}article :where(h3 code):not(:where([class~=not-prose] *)){font-size:.875em}article :where(pre):not(:where([class~=not-prose] *)){border-radius:.375rem;font-size:.8888889em;line-height:1.75;margin-bottom:2em;margin-top:2em;padding:1em 1.5em}article :where(ol):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.5555556em}article :where(ul):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-left:1.5555556em}article :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6666667em;margin-top:.6666667em}article :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}article :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4444444em}article :where(.lg\:prose-lg>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}article :where(.lg\:prose-lg>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}article :where(.lg\:prose-lg>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}article :where(.lg\:prose-lg>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.3333333em}article :where(.lg\:prose-lg>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.3333333em}article :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8888889em;margin-top:.8888889em}article :where(hr):not(:where([class~=not-prose] *)){margin-bottom:3.1111111em;margin-top:3.1111111em}article :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(table):not(:where([class~=not-prose] *)){font-size:.8888889em;line-height:1.5}article :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.75em;padding-left:.75em;padding-right:.75em}article :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}article :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}article :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.75em}article :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}article :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}article :where(.lg\:prose-lg>:first-child):not(:where([class~=not-prose] *)){margin-top:0}article :where(.lg\:prose-lg>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}}@media (min-width:1280px){article{font-size:1.25rem;line-height:1.8}article :where(p):not(:where([class~=not-prose] *)){margin-bottom:1.2em;margin-top:1.2em}article :where([class~=lead]):not(:where([class~=not-prose] *)){font-size:1.2em;line-height:1.5;margin-bottom:1em;margin-top:1em}article :where(blockquote):not(:where([class~=not-prose] *)){margin-bottom:1.6em;margin-top:1.6em;padding-left:1.0666667em}article :where(h1):not(:where([class~=not-prose] *)){font-size:2.8em;line-height:1;margin-bottom:.8571429em;margin-top:0}article :where(h2):not(:where([class~=not-prose] *)){font-size:1.8em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:1.5555556em}article :where(h3):not(:where([class~=not-prose] *)){font-size:1.5em;line-height:1.3333333;margin-bottom:.6666667em;margin-top:1.6em}article :where(h4):not(:where([class~=not-prose] *)){line-height:1.6;margin-bottom:.6em;margin-top:1.8em}article :where(img):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}article :where(video):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}article :where(figure):not(:where([class~=not-prose] *)){margin-bottom:2em;margin-top:2em}article :where(figure>*):not(:where([class~=not-prose] *)){margin-bottom:0;margin-top:0}article :where(figcaption):not(:where([class~=not-prose] *)){font-size:.9em;line-height:1.5555556;margin-top:1em}article :where(code):not(:where([class~=not-prose] *)){font-size:.9em}article :where(h2 code):not(:where([class~=not-prose] *)){font-size:.8611111em}article :where(h3 code):not(:where([class~=not-prose] *)){font-size:.9em}article :where(pre):not(:where([class~=not-prose] *)){border-radius:.5rem;font-size:.9em;line-height:1.7777778;margin-bottom:2em;margin-top:2em;padding:1.1111111em 1.3333333em}article :where(ol):not(:where([class~=not-prose] *)){margin-bottom:1.2em;margin-top:1.2em;padding-left:1.6em}article :where(ul):not(:where([class~=not-prose] *)){margin-bottom:1.2em;margin-top:1.2em;padding-left:1.6em}article :where(li):not(:where([class~=not-prose] *)){margin-bottom:.6em;margin-top:.6em}article :where(ol>li):not(:where([class~=not-prose] *)){padding-left:.4em}article :where(ul>li):not(:where([class~=not-prose] *)){padding-left:.4em}article :where(.xl\:prose-xl>ul>li p):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}article :where(.xl\:prose-xl>ul>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}article :where(.xl\:prose-xl>ul>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}article :where(.xl\:prose-xl>ol>li>:first-child):not(:where([class~=not-prose] *)){margin-top:1.2em}article :where(.xl\:prose-xl>ol>li>:last-child):not(:where([class~=not-prose] *)){margin-bottom:1.2em}article :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose] *)){margin-bottom:.8em;margin-top:.8em}article :where(hr):not(:where([class~=not-prose] *)){margin-bottom:2.8em;margin-top:2.8em}article :where(hr+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(h2+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(h3+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(h4+*):not(:where([class~=not-prose] *)){margin-top:0}article :where(table):not(:where([class~=not-prose] *)){font-size:.9em;line-height:1.5555556}article :where(thead th):not(:where([class~=not-prose] *)){padding-bottom:.8888889em;padding-left:.6666667em;padding-right:.6666667em}article :where(thead th:first-child):not(:where([class~=not-prose] *)){padding-left:0}article :where(thead th:last-child):not(:where([class~=not-prose] *)){padding-right:0}article :where(tbody td,tfoot td):not(:where([class~=not-prose] *)){padding:.8888889em .6666667em}article :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose] *)){padding-left:0}article :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose] *)){padding-right:0}article :where(.xl\:prose-xl>:first-child):not(:where([class~=not-prose] *)){margin-top:0}article :where(.xl\:prose-xl>:last-child):not(:where([class~=not-prose] *)){margin-bottom:0}}@media (min-width:640px){article{margin-left:auto;margin-right:auto}}.section-container{width:100%}@media (min-width:470px){.section-container{max-width:470px}}@media (min-width:640px){.section-container{max-width:640px}}@media (min-width:768px){.section-container{max-width:768px}}@media (min-width:1024px){.section-container{max-width:1024px}}@media (min-width:1280px){.section-container{max-width:1280px}}@media (min-width:1536px){.section-container{max-width:1536px}}.section-container{margin-left:auto;margin-right:auto;padding:6rem 1.25rem}.header-text{font-size:1.5rem;font-weight:500;line-height:2rem}@media (min-width:640px){.header-text{font-size:1.875rem;line-height:2.25rem}}.footer-link{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.footer-link:hover{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity))}.footer-categorie{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity));font-size:.875rem;font-weight:500;letter-spacing:.1em;line-height:1.25rem;margin-bottom:.75rem}.cm-hvr-btn{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity));border-radius:.25rem;color:rgb(55 65 81/var(--tw-text-opacity))}.cm-hvr-btn:hover{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.cm-hvr-btn-primary{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(221 188 145/var(--tw-bg-opacity));border-radius:.25rem;color:rgb(255 255 255/var(--tw-text-opacity))}.cm-hvr-btn-primary:hover{--tw-bg-opacity:1;background-color:rgb(144 168 216/var(--tw-bg-opacity))}.cm-gray-1{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.cm-gray-2{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.cm-gray-3{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}a.anchor{display:block;position:relative;top:-72px;visibility:hidden}.content a{color:#111827;font-weight:500;text-decoration:underline}.color-link{--tw-text-opacity:1;color:rgb(221 188 145/var(--tw-text-opacity))}.badge{border-radius:9999px;padding:.25rem .625rem}.list-unstyled,.list-unstyled li{list-style-type:none;padding-left:0;position:static}.plugin_cat{background-color:rgb(234 179 8/var(--tw-bg-opacity))}.plugin_cat,.plugin_tag{--tw-bg-opacity:1;border-radius:9999px;padding:.25rem .625rem;white-space:nowrap}.plugin_tag{background-color:rgb(96 165 250/var(--tw-bg-opacity))}.max-w-p90{max-width:90%}img+em{display:block;text-align:center}.plugin_links{font-style:italic;margin-bottom:0}.anchor{display:block;position:relative;top:-4.5rem;visibility:hidden}.static{position:static}.absolute{position:absolute}.sticky{position:sticky}.top-0{top:0}.z-50{z-index:50}.-m-4{margin:-1rem}.m-5{margin:1.25rem}.mx-auto{margin-left:auto;margin-right:auto}.my-0{margin-top:0}.mb-0,.my-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-10{margin-bottom:2.5rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-20{margin-bottom:5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.mr-2{margin-right:.5rem}.mr-4{margin-right:1rem}.mr-5{margin-right:1.25rem}.mt-10{margin-top:2.5rem}.mt-2{margin-top:.5rem}.mt-4{margin-top:1rem}.block{display:block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.contents{display:contents}.hidden{display:none}.h-1{height:.25rem}.h-12{height:3rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-8{height:2rem}.h-full{height:100%}.min-h-screen{min-height:100vh}.w-1\/2{width:50%}.w-12{width:3rem}.w-20{width:5rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-5\/6{width:83.333333%}.w-6{width:1.5rem}.w-64{width:16rem}.w-full{width:100%}.flex-none{flex:none}.flex-shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.list-none{list-style-type:none}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-center{justify-content:center}.self-center{align-self:center}.overflow-hidden,.truncate{overflow:hidden}.truncate{text-overflow:ellipsis;white-space:nowrap}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-b{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.border{border-width:1px}.border-0{border-width:0}.border-t-4{border-top-width:4px}.border-teal-500{--tw-border-opacity:1;border-color:rgb(20 184 166/var(--tw-border-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.bg-lime-600{--tw-bg-opacity:1;background-color:rgb(101 163 13/var(--tw-bg-opacity))}.bg-secondary{--tw-bg-opacity:1;background-color:rgb(221 188 145/var(--tw-bg-opacity))}.bg-teal-100{--tw-bg-opacity:1;background-color:rgb(204 251 241/var(--tw-bg-opacity))}.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.from-primary{--tw-gradient-from:#90a8d8 var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:rgba(144,168,216,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-white{--tw-gradient-from:#fff var(--tw-gradient-from-position);--tw-gradient-from-position: ;--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-from-position);--tw-gradient-to-position: ;--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.to-secondary{--tw-gradient-to:#ddbc91 var(--tw-gradient-to-position);--tw-gradient-to-position: }.bg-clip-text{-webkit-background-clip:text;background-clip:text}.fill-current{fill:currentColor}.object-cover{-o-object-fit:cover;object-fit:cover}.object-center{-o-object-position:center;object-position:center}.p-2{padding:.5rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-24{padding-bottom:6rem;padding-top:6rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-4{padding-bottom:1rem;padding-top:1rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.pb-1{padding-bottom:.25rem}.pl-4{padding-left:1rem}.pt-3{padding-top:.75rem}.pt-8{padding-top:2rem}.text-center{text-align:center}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-normal{font-weight:400}.italic{font-style:italic}.leading-loose{line-height:2}.leading-relaxed{line-height:1.625}.tracking-widest{letter-spacing:.1em}.text-primary{--tw-text-opacity:1;color:rgb(144 168 216/var(--tw-text-opacity))}.text-secondary{--tw-text-opacity:1;color:rgb(221 188 145/var(--tw-text-opacity))}.text-teal-500{--tw-text-opacity:1;color:rgb(20 184 166/var(--tw-text-opacity))}.text-teal-900{--tw-text-opacity:1;color:rgb(19 78 74/var(--tw-text-opacity))}.text-transparent{color:transparent}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.no-underline{text-decoration-line:none}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.shadow-md,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.hover\:cm-gray-1:hover{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.hover\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.hover\:bg-primary:hover{--tw-bg-opacity:1;background-color:rgb(144 168 216/var(--tw-bg-opacity))}.hover\:underline:hover{text-decoration-line:underline}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}@media (min-width:470px){.xs\:ml-4{margin-left:1rem}.xs\:flex-none{flex:none}.xs\:border-l{border-left-width:1px}.xs\:border-gray-400{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity))}.xs\:pl-4{padding-left:1rem}}@media (min-width:640px){.sm\:ml-2{margin-left:.5rem}.sm\:ml-auto{margin-left:auto}.sm\:mt-0{margin-top:0}.sm\:hidden{display:none}.sm\:w-1\/4{width:25%}.sm\:flex-row{flex-direction:row}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:pl-8{padding-left:2rem}.sm\:pr-16{padding-right:4rem}.sm\:text-left{text-align:left}.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:text-xl{font-size:1.25rem;line-height:1.75rem}}@media (min-width:768px){.md\:mx-0{margin-left:0;margin-right:0}.md\:mb-0{margin-bottom:0}.md\:mr-4{margin-right:1rem}.md\:mr-auto{margin-right:auto}.md\:mt-0{margin-top:0}.md\:flex{display:flex}.md\:w-1\/2{width:50%}.md\:w-1\/4{width:25%}.md\:w-auto{width:auto}.md\:w-full{width:100%}.md\:flex-row{flex-direction:row}.md\:flex-nowrap{flex-wrap:nowrap}.md\:items-start{align-items:flex-start}.md\:justify-start{justify-content:flex-start}.md\:py-1{padding-bottom:.25rem;padding-top:.25rem}.md\:pl-10{padding-left:2.5rem}.md\:pr-16{padding-right:4rem}.md\:text-left{text-align:left}}@media (min-width:1024px){.lg\:mb-0{margin-bottom:0}.lg\:inline-block{display:inline-block}.lg\:w-1\/2{width:50%}.lg\:w-2\/3{width:66.666667%}.lg\:w-full{width:100%}.lg\:max-w-lg{max-width:32rem}.lg\:flex-grow{flex-grow:1}.lg\:pr-24{padding-right:6rem}}@media (min-width:1280px){.xl\:w-1\/3{width:33.333333%}.xl\:w-1\/4{width:25%}} \ No newline at end of file diff --git a/blog.html b/blog.html index 775d3054..77dd6cba 100644 --- a/blog.html +++ b/blog.html @@ -21,7 +21,7 @@ Blog | InvenTree - + diff --git a/blog/2021/10/25/starting.html b/blog/2021/10/25/starting.html index 532b234d..e4ef7597 100644 --- a/blog/2021/10/25/starting.html +++ b/blog/2021/10/25/starting.html @@ -21,7 +21,7 @@ Starting with templates | InvenTree - + diff --git a/blog/2021/11/22/translation.html b/blog/2021/11/22/translation.html index 0cdc7734..64542d66 100644 --- a/blog/2021/11/22/translation.html +++ b/blog/2021/11/22/translation.html @@ -21,7 +21,7 @@ Translating InvenTree | InvenTree - + diff --git a/blog/2022/12/12/0.9.0.html b/blog/2022/12/12/0.9.0.html index 64e4dc28..2eec0821 100644 --- a/blog/2022/12/12/0.9.0.html +++ b/blog/2022/12/12/0.9.0.html @@ -21,7 +21,7 @@ 0.9.0 Stable Release | InvenTree - + diff --git a/blog/2023/01/02/upcoming.html b/blog/2023/01/02/upcoming.html index 23a022b7..446da337 100644 --- a/blog/2023/01/02/upcoming.html +++ b/blog/2023/01/02/upcoming.html @@ -21,7 +21,7 @@ 2022 in Review | InvenTree - + diff --git a/blog/2023/01/30/plugin-list.html b/blog/2023/01/30/plugin-list.html index 740cc491..72787a81 100644 --- a/blog/2023/01/30/plugin-list.html +++ b/blog/2023/01/30/plugin-list.html @@ -21,7 +21,7 @@ Starting the Plugin List | InvenTree - + diff --git a/blog/2023/02/06/0.10.0.html b/blog/2023/02/06/0.10.0.html index 32a0b284..e3534f5d 100644 --- a/blog/2023/02/06/0.10.0.html +++ b/blog/2023/02/06/0.10.0.html @@ -21,7 +21,7 @@ 0.10.0 Stable Release | InvenTree - + diff --git a/blog/2023/02/25/0.10.1.html b/blog/2023/02/25/0.10.1.html index 4785fdf3..4de71773 100644 --- a/blog/2023/02/25/0.10.1.html +++ b/blog/2023/02/25/0.10.1.html @@ -21,7 +21,7 @@ 0.10.1 Bugfix Release | InvenTree - + diff --git a/blog/2023/04/17/0.11.0.html b/blog/2023/04/17/0.11.0.html index c4b98593..e0cdb9b6 100644 --- a/blog/2023/04/17/0.11.0.html +++ b/blog/2023/04/17/0.11.0.html @@ -21,7 +21,7 @@ 0.11.0 Stable Release | InvenTree - + diff --git a/blog/feed.atom b/blog/feed.atom index dbb96af9..886283ac 100644 --- a/blog/feed.atom +++ b/blog/feed.atom @@ -1 +1 @@ -Jekyll2023-04-18T16:17:33+00:00/blog/feed.atomInvenTreeInvenTree is an open-source inventory management system which provides intuitive parts management and stock control. It is at the center of an ecosystem of addins for EDA tools, API wrapper, deeply integrated plugins and 3rd party tools.0.11.0 Stable Release2023-04-17T00:00:00+00:002023-04-17T00:00:00+00:00/blog/2023/04/17/0.11.0SchrodingersGat

0.10.1 Bugfix Release2023-02-25T00:00:00+00:002023-02-25T00:00:00+00:00/blog/2023/02/25/0.10.1SchrodingersGat0.10.0 Stable Release2023-02-06T00:00:00+00:002023-02-06T00:00:00+00:00/blog/2023/02/06/0.10.0SchrodingersGatStarting the Plugin List2023-01-30T00:00:00+00:002023-01-30T00:00:00+00:00/blog/2023/01/30/plugin-listmatmair2022 in Review2023-01-02T00:00:00+00:002023-01-02T00:00:00+00:00/blog/2023/01/02/upcomingSchrodingersGat0.9.0 Stable Release2022-12-12T00:00:00+00:002022-12-12T00:00:00+00:00/blog/2022/12/12/0.9.0SchrodingersGatTranslating InvenTree2021-11-22T00:00:00+00:002021-11-22T00:00:00+00:00/blog/2021/11/22/translationSchrodingersGatStarting with templates2021-10-25T00:00:00+00:002021-10-25T00:00:00+00:00/blog/2021/10/25/startingmatmair \ No newline at end of file +Jekyll2023-04-18T17:44:56+00:00/blog/feed.atomInvenTreeInvenTree is an open-source inventory management system which provides intuitive parts management and stock control. It is at the center of an ecosystem of addins for EDA tools, API wrapper, deeply integrated plugins and 3rd party tools.0.11.0 Stable Release2023-04-17T00:00:00+00:002023-04-17T00:00:00+00:00/blog/2023/04/17/0.11.0SchrodingersGat0.10.1 Bugfix Release2023-02-25T00:00:00+00:002023-02-25T00:00:00+00:00/blog/2023/02/25/0.10.1SchrodingersGat0.10.0 Stable Release2023-02-06T00:00:00+00:002023-02-06T00:00:00+00:00/blog/2023/02/06/0.10.0SchrodingersGatStarting the Plugin List2023-01-30T00:00:00+00:002023-01-30T00:00:00+00:00/blog/2023/01/30/plugin-listmatmair2022 in Review2023-01-02T00:00:00+00:002023-01-02T00:00:00+00:00/blog/2023/01/02/upcomingSchrodingersGat0.9.0 Stable Release2022-12-12T00:00:00+00:002022-12-12T00:00:00+00:00/blog/2022/12/12/0.9.0SchrodingersGatTranslating InvenTree2021-11-22T00:00:00+00:002021-11-22T00:00:00+00:00/blog/2021/11/22/translationSchrodingersGatStarting with templates2021-10-25T00:00:00+00:002021-10-25T00:00:00+00:00/blog/2021/10/25/startingmatmair \ No newline at end of file diff --git a/contribute.html b/contribute.html index 4de966cc..26be66b6 100644 --- a/contribute.html +++ b/contribute.html @@ -21,7 +21,7 @@ Contribute | InvenTree - + diff --git a/demo.html b/demo.html index 2f9b73ec..e96945ed 100644 --- a/demo.html +++ b/demo.html @@ -21,7 +21,7 @@ InvenTree Demo | InvenTree - + diff --git a/deploy.html b/deploy.html index b6c3d1ce..8cf7ec08 100644 --- a/deploy.html +++ b/deploy.html @@ -21,7 +21,7 @@ Deploying InvenTree | InvenTree - + diff --git a/extend/api.html b/extend/api.html index a82278eb..eeb31c76 100644 --- a/extend/api.html +++ b/extend/api.html @@ -21,7 +21,7 @@ API | InvenTree - + diff --git a/extend/app.html b/extend/app.html index 87412182..2e744da2 100644 --- a/extend/app.html +++ b/extend/app.html @@ -21,7 +21,7 @@ InvenTree Mobile App | InvenTree - + diff --git a/extend/index.html b/extend/index.html index 47395dbd..ce0843d6 100644 --- a/extend/index.html +++ b/extend/index.html @@ -21,7 +21,7 @@ Ecosystem | InvenTree - + diff --git a/extend/integrate/index.html b/extend/integrate/index.html index 946dfa34..29a351af 100644 --- a/extend/integrate/index.html +++ b/extend/integrate/index.html @@ -21,7 +21,7 @@ Integrate | InvenTree - + diff --git a/extend/plugin/index.html b/extend/plugin/index.html index 747964c2..32d6592a 100644 --- a/extend/plugin/index.html +++ b/extend/plugin/index.html @@ -21,7 +21,7 @@ Plugins | InvenTree - + diff --git a/functions.html b/functions.html index e064e083..b303f081 100644 --- a/functions.html +++ b/functions.html @@ -21,7 +21,7 @@ InvenTree | Intuitive Inventory Management - + diff --git a/index.html b/index.html index e2c03de8..bf40f274 100644 --- a/index.html +++ b/index.html @@ -21,7 +21,7 @@ InvenTree | Intuitive Inventory Management - + diff --git a/matmair.html b/matmair.html index 960d6888..2d2bec2a 100644 --- a/matmair.html +++ b/matmair.html @@ -21,7 +21,7 @@ Matmair | InvenTree - + @@ -30,11 +30,11 @@ - + +{"@context":"https://schema.org","@type":"BlogPosting","dateModified":"2023-04-18T17:44:56+00:00","datePublished":"2023-04-18T17:44:56+00:00","description":"I try to build an ecosystem of reusable plugins and integrations for InvenTree. Code once and KISS!","headline":"Matmair","mainEntityOfPage":{"@type":"WebPage","@id":"/matmair"},"url":"/matmair"} diff --git a/matmair/inventree-apprise.html b/matmair/inventree-apprise.html index 1f6dcbc8..54733fcd 100644 --- a/matmair/inventree-apprise.html +++ b/matmair/inventree-apprise.html @@ -21,7 +21,7 @@ Inventree Apprise | InvenTree - + @@ -31,11 +31,11 @@ - + +{"@context":"https://schema.org","@type":"BlogPosting","author":{"@type":"Person","name":"matmair"},"dateModified":"2023-04-18T17:44:56+00:00","datePublished":"2023-04-18T17:44:56+00:00","description":"Send notifications from InvenTree via Apprise","headline":"Inventree Apprise","mainEntityOfPage":{"@type":"WebPage","@id":"/matmair/inventree-apprise"},"url":"/matmair/inventree-apprise"} diff --git a/matmair/inventree-rapidoc.html b/matmair/inventree-rapidoc.html index a5cdb398..0c734111 100644 --- a/matmair/inventree-rapidoc.html +++ b/matmair/inventree-rapidoc.html @@ -21,7 +21,7 @@ Inventree Rapidoc | InvenTree - + @@ -31,11 +31,11 @@ - + +{"@context":"https://schema.org","@type":"BlogPosting","author":{"@type":"Person","name":"matmair"},"dateModified":"2023-04-18T17:44:56+00:00","datePublished":"2023-04-18T17:44:56+00:00","description":"Use RapiDoc for Inventree API docs","headline":"Inventree Rapidoc","mainEntityOfPage":{"@type":"WebPage","@id":"/matmair/inventree-rapidoc"},"url":"/matmair/inventree-rapidoc"} @@ -163,9 +163,7 @@ There are no configuration options for this plugin. Your server needs to have Tags
diff --git a/matmair/inventree-zapier.html b/matmair/inventree-zapier.html index 85fa3e81..4f5d7425 100644 --- a/matmair/inventree-zapier.html +++ b/matmair/inventree-zapier.html @@ -21,7 +21,7 @@ Inventree Zapier | InvenTree - + @@ -31,11 +31,11 @@ - + +{"@context":"https://schema.org","@type":"BlogPosting","author":{"@type":"Person","name":"matmair"},"dateModified":"2023-04-18T17:44:56+00:00","datePublished":"2023-04-18T17:44:56+00:00","description":"Integrate Zapier into InvenTree","headline":"Inventree Zapier","mainEntityOfPage":{"@type":"WebPage","@id":"/matmair/inventree-zapier"},"url":"/matmair/inventree-zapier"} diff --git a/news.html b/news.html index e993e570..6dc5cad8 100644 --- a/news.html +++ b/news.html @@ -21,7 +21,7 @@ News | InvenTree - + diff --git a/news/2022/04/23/news-are-starting.html b/news/2022/04/23/news-are-starting.html index 73f01811..ebca6be6 100644 --- a/news/2022/04/23/news-are-starting.html +++ b/news/2022/04/23/news-are-starting.html @@ -21,7 +21,7 @@ We have news now! | InvenTree - + diff --git a/news/2022/11/14/website.html b/news/2022/11/14/website.html index 8966c2ff..da5d9d0d 100644 --- a/news/2022/11/14/website.html +++ b/news/2022/11/14/website.html @@ -21,7 +21,7 @@ New Website | InvenTree - + diff --git a/news/2022/12/12/0.9.0.html b/news/2022/12/12/0.9.0.html index 9f940546..f72bd996 100644 --- a/news/2022/12/12/0.9.0.html +++ b/news/2022/12/12/0.9.0.html @@ -21,7 +21,7 @@ 0.9.0 Release | InvenTree - + diff --git a/news/2023/01/30/introducing-the-plugin-list.html b/news/2023/01/30/introducing-the-plugin-list.html index cff7fa3d..f485be0c 100644 --- a/news/2023/01/30/introducing-the-plugin-list.html +++ b/news/2023/01/30/introducing-the-plugin-list.html @@ -21,7 +21,7 @@ Introducing the Plugin List | InvenTree - + diff --git a/news/feed.atom b/news/feed.atom index 5cc8c69d..23bd0944 100644 --- a/news/feed.atom +++ b/news/feed.atom @@ -1 +1 @@ -Jekyll2023-04-18T16:17:33+00:00/news/feed.atomInvenTree | NewsInvenTree is an open-source inventory management system which provides intuitive parts management and stock control. It is at the center of an ecosystem of addins for EDA tools, API wrapper, deeply integrated plugins and 3rd party tools.Introducing the Plugin List2023-01-30T00:00:00+00:002023-01-30T00:00:00+00:00/news/2023/01/30/introducing-the-plugin-listmatmair0.9.0 Release2022-12-12T00:00:00+00:002022-12-12T00:00:00+00:00/news/2022/12/12/0.9.0SchrodingersGatNew Website2022-11-14T00:00:00+00:002022-11-14T00:00:00+00:00/news/2022/11/14/websiteSchrodingersGatWe have news now!2022-04-23T00:00:00+00:002022-04-23T00:00:00+00:00/news/2022/04/23/news-are-startingmatmair \ No newline at end of file +Jekyll2023-04-18T17:44:56+00:00/news/feed.atomInvenTree | NewsInvenTree is an open-source inventory management system which provides intuitive parts management and stock control. It is at the center of an ecosystem of addins for EDA tools, API wrapper, deeply integrated plugins and 3rd party tools.Introducing the Plugin List2023-01-30T00:00:00+00:002023-01-30T00:00:00+00:00/news/2023/01/30/introducing-the-plugin-listmatmair0.9.0 Release2022-12-12T00:00:00+00:002022-12-12T00:00:00+00:00/news/2022/12/12/0.9.0SchrodingersGatNew Website2022-11-14T00:00:00+00:002022-11-14T00:00:00+00:00/news/2022/11/14/websiteSchrodingersGatWe have news now!2022-04-23T00:00:00+00:002022-04-23T00:00:00+00:00/news/2022/04/23/news-are-startingmatmair \ No newline at end of file diff --git a/newsletter.html b/newsletter.html index 14baa2d3..28ca5b1e 100644 --- a/newsletter.html +++ b/newsletter.html @@ -21,7 +21,7 @@ InvenTree | Intuitive Inventory Management - + diff --git a/plugins.html b/plugins.html index 185c3c3b..f07ee0d6 100644 --- a/plugins.html +++ b/plugins.html @@ -21,7 +21,7 @@ Plugin List | InvenTree - + @@ -182,9 +182,7 @@ API - inventree-rapidoc, - - rapidoc + RapiDoc

inventree-rapidoc

diff --git a/plugins/categories/index.html b/plugins/categories/index.html index 6a8eff0d..0829cb31 100644 --- a/plugins/categories/index.html +++ b/plugins/categories/index.html @@ -21,7 +21,7 @@ Plugins by Category | InvenTree - + @@ -128,9 +128,7 @@ API - inventree-rapidoc, - - rapidoc + RapiDoc

inventree-rapidoc

diff --git a/plugins/tags/index.html b/plugins/tags/index.html index d5841abf..f180372b 100644 --- a/plugins/tags/index.html +++ b/plugins/tags/index.html @@ -21,7 +21,7 @@ Plugins by Tags | InvenTree - + @@ -138,6 +138,12 @@ + + RapiDoc + + + + Slack @@ -167,18 +173,6 @@ - - - inventree-rapidoc, - - - - - - rapidoc - - -

@@ -1050,6 +1044,64 @@
+
+ + + +
+

RapiDoc

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -1380,126 +1432,6 @@
- - - - -
-

inventree-rapidoc,

- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
-

rapidoc

- -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/publishers.html b/publishers.html index d669b846..d14bee42 100644 --- a/publishers.html +++ b/publishers.html @@ -21,7 +21,7 @@ Publishers | InvenTree - + diff --git a/schrodingersgat.html b/schrodingersgat.html index 428d9458..97dcb071 100644 --- a/schrodingersgat.html +++ b/schrodingersgat.html @@ -21,7 +21,7 @@ Schrodingersgat | InvenTree - + @@ -30,11 +30,11 @@ - + +{"@context":"https://schema.org","@type":"BlogPosting","dateModified":"2023-04-18T17:44:56+00:00","datePublished":"2023-04-18T17:44:56+00:00","description":"Maintainer of InvenTree.","headline":"Schrodingersgat","mainEntityOfPage":{"@type":"WebPage","@id":"/schrodingersgat"},"url":"/schrodingersgat"} diff --git a/sitemap.xml b/sitemap.xml index e323922c..e5ef4dc3 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -50,43 +50,43 @@ /SergeoLacruz -2023-04-18T16:17:33+00:00 +2023-04-18T17:44:56+00:00 /matmair -2023-04-18T16:17:33+00:00 +2023-04-18T17:44:56+00:00 /schrodingersgat -2023-04-18T16:17:33+00:00 +2023-04-18T17:44:56+00:00 /wolflu05 -2023-04-18T16:17:33+00:00 +2023-04-18T17:44:56+00:00 /matmair/inventree-apprise -2023-04-18T16:17:33+00:00 +2023-04-18T17:44:56+00:00 /SchrodingersGat/inventree-brother-plugin -2023-04-18T16:17:33+00:00 +2023-04-18T17:44:56+00:00 /wolflu05/inventree-cups-plugin -2023-04-18T16:17:33+00:00 +2023-04-18T17:44:56+00:00 /matmair/inventree-rapidoc -2023-04-18T16:17:33+00:00 +2023-04-18T17:44:56+00:00 /matmair/inventree-zapier -2023-04-18T16:17:33+00:00 +2023-04-18T17:44:56+00:00 /SergeoLacruz/inventree-zebra-plugin -2023-04-18T16:17:33+00:00 +2023-04-18T17:44:56+00:00 /404 diff --git a/support.html b/support.html index 3fec3ef0..dadab71b 100644 --- a/support.html +++ b/support.html @@ -21,7 +21,7 @@ Get Support | InvenTree - + diff --git a/use/business.html b/use/business.html index 44160e51..3ac350a2 100644 --- a/use/business.html +++ b/use/business.html @@ -21,7 +21,7 @@ For Business | InvenTree - + diff --git a/use/education.html b/use/education.html index 494c78c6..7de9da05 100644 --- a/use/education.html +++ b/use/education.html @@ -21,7 +21,7 @@ For Education | InvenTree - + diff --git a/use/maker.html b/use/maker.html index f64bcf50..804ac23a 100644 --- a/use/maker.html +++ b/use/maker.html @@ -21,7 +21,7 @@ For Maker | InvenTree - + diff --git a/wolflu05.html b/wolflu05.html index ac182efb..a6aa0274 100644 --- a/wolflu05.html +++ b/wolflu05.html @@ -21,7 +21,7 @@ Wolflu05 | InvenTree - + @@ -30,11 +30,11 @@ - + +{"@context":"https://schema.org","@type":"BlogPosting","dateModified":"2023-04-18T17:44:56+00:00","datePublished":"2023-04-18T17:44:56+00:00","description":"InvenTree is an open-source inventory management system which provides intuitive parts management and stock control. It is at the center of an ecosystem of addins for EDA tools, API wrapper, deeply integrated plugins and 3rd party tools.","headline":"Wolflu05","mainEntityOfPage":{"@type":"WebPage","@id":"/wolflu05"},"url":"/wolflu05"} diff --git a/wolflu05/inventree-cups-plugin.html b/wolflu05/inventree-cups-plugin.html index 5018967b..e0a03b42 100644 --- a/wolflu05/inventree-cups-plugin.html +++ b/wolflu05/inventree-cups-plugin.html @@ -21,7 +21,7 @@ Inventree Cups Plugin | InvenTree - + @@ -31,11 +31,11 @@ - + +{"@context":"https://schema.org","@type":"BlogPosting","author":{"@type":"Person","name":"wolflu05"},"dateModified":"2023-04-18T17:44:56+00:00","datePublished":"2023-04-18T17:44:56+00:00","description":"Label printing plugin for generic cups printers","headline":"Inventree Cups Plugin","mainEntityOfPage":{"@type":"WebPage","@id":"/wolflu05/inventree-cups-plugin"},"url":"/wolflu05/inventree-cups-plugin"}