Skip to content

Commit c2513d2

Browse files
author
Exploding Labs Bot
committed
Update site from docs source repo
1 parent c266248 commit c2513d2

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

sku-generator/assets/logo.png

1.9 MB
Loading

sku-generator/index.html

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,7 @@
406406
display: block;
407407
float: right;
408408
padding: 0 1em 0 2em;
409+
width: 300px;
409410

410411
@media (max-width: 768px) {
411412
float: none;
@@ -419,11 +420,13 @@
419420

420421
<p><img src="assets/logo.png" alt="Logo" class="logo-responsive" /></p>
421422
<h1 id="sku-generator">SKU Generator</h1>
422-
<p><em>SKU Generator</em> is a minimal, modular backend powered by PostgreSQL — perfect for
423-
indie developers, SaaS builders, and teams who want full control without the
424-
bloat.</p>
425-
<p>Spin up a fully working backend in seconds. Just clone, run, and start
426-
building.</p>
423+
<p><em>SKU Generator</em> is a simple tool that helps you automatically create clean,
424+
consistent Stock Keeping Units (SKUs) from your product data. Instead of
425+
manually typing codes into spreadsheets, you can upload a product list and let
426+
SKU Generator build SKUs for you based on your chosen format. It’s designed for
427+
sellers, store owners, and makers who want to save time, reduce errors, and
428+
keep their product catalogs organized across platforms like Shopify, Etsy, or
429+
Amazon.</p>
427430
<hr />
428431
<h2 id="whats-next">📚 What's next?</h2>
429432
<p>👉 <a href="gettingstarted/">Getting Started</a> – a guide to using SKU Generator.</p>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"","title":"Home","text":""},{"location":"#sku-generator","title":"SKU Generator","text":"<p>SKU Generator is a minimal, modular backend powered by PostgreSQL \u2014 perfect for indie developers, SaaS builders, and teams who want full control without the bloat.</p> <p>Spin up a fully working backend in seconds. Just clone, run, and start building.</p>"},{"location":"#whats-next","title":"\ud83d\udcda What's next?","text":"<p>\ud83d\udc49 Getting Started \u2013 a guide to using SKU Generator.</p>"},{"location":"format/","title":"How to Create a SKU Format","text":"<p>A SKU format is a simple recipe that tells the app how to build SKUs (Stock Keeping Units) from the columns in your CSV file. You don\u2019t need to know programming \u2014 just follow the rules below.</p>"},{"location":"format/#1-referencing-columns","title":"1. Referencing Columns","text":"<p>Each column in your CSV can be referenced by a letter:</p> <ul> <li><code>A</code> = first column</li> <li><code>B</code> = second column</li> <li><code>C</code> = third column</li> <li>\u2026and so on.</li> <li>After <code>Z</code>, it continues as <code>AA</code>, <code>AB</code>, <code>AC</code>\u2026</li> </ul>"},{"location":"format/#2-basic-format","title":"2. Basic Format","text":"<p>You can combine text and column references inside braces <code>{ }</code>.</p> <pre><code>{A}-{B}-{C}\n</code></pre> <ul> <li>If <code>A = \"Shirt\"</code> and <code>B = \"Red\"</code>, the SKU will be:</li> </ul> <pre><code>Shirt-Red\n</code></pre> <p>You can also add your own fixed text:</p> <pre><code>SKU-{A}-{B}\n</code></pre> <p>Gives:</p> <pre><code>SKU-Shirt-Red\n</code></pre>"},{"location":"format/#3-transformations","title":"3. Transformations","text":"<p>You can apply transformations to change how the column text is used. Add them after a colon <code>:</code> inside the braces.</p>"},{"location":"format/#common-transformations","title":"Common Transformations","text":"<ul> <li> <p><code>U</code> \u2192 Uppercase <code>{A:U}</code> \u2192 <code>SHIRT</code></p> </li> <li> <p><code>L</code> \u2192 Lowercase <code>{A:L}</code> \u2192 <code>shirt</code></p> </li> <li> <p><code>I</code> \u2192 Initials (first letter of each word) <code>{A:I}</code> \u2192 <code>S</code> (from \u201cShirt\u201d) <code>{A:I}</code> \u2192 <code>BLT</code> (from \u201cBlue Long Trousers\u201d)</p> </li> <li> <p><code>W</code> \u2192 First word only <code>{A:W}</code> \u2192 <code>Blue</code> (from \u201cBlue Long Trousers\u201d)</p> </li> <li> <p><code>C</code> \u2192 Consonants only <code>{A:C}</code> \u2192 <code>blngtrss</code> (from \u201cBlue Long Trousers\u201d)</p> </li> <li> <p><code>S</code> \u2192 Slug (clean up spaces and symbols with <code>_</code>) <code>{A:S}</code> \u2192 <code>blue_long_trousers</code></p> </li> <li> <p><code>n</code> (number) \u2192 Take first n characters (letters/numbers only) <code>{A:3}</code> \u2192 <code>Blu</code> (from \u201cBlue\u201d) <code>{B:2}</code> \u2192 <code>Rd</code> (from \u201cRed\u201d)</p> </li> <li> <p><code>nP</code> \u2192 Pad or trim to n characters <code>{B:5P}</code> \u2192 <code>RedXX</code> (pads with X if too short)</p> </li> <li> <p><code>nZ</code> \u2192 Zero-pad a number to n digits <code>{C:4Z}</code> \u2192 <code>0042</code> (if column C = 42)</p> </li> </ul>"},{"location":"format/#4-combining-multiple-transforms","title":"4. Combining Multiple Transforms","text":"<p>You can chain multiple transformations together:</p> <pre><code>{A:U3} \u2192 Take first 3 letters, then uppercase\n</code></pre> <p>If <code>A = \"trousers\"</code>, result is:</p> <pre><code>TRO\n</code></pre>"},{"location":"format/#5-examples","title":"5. Examples","text":"CSV Row (A=Name, B=Color, C=ID) Format Result Shirt, Red, 42 <code>{A}-{B}-{C}</code> <code>Shirt-Red-42</code> Shirt, Red, 42 <code>{A:U}-{B:U}</code> <code>SHIRT-RED</code> Blue Long Trousers, Navy, 7 <code>{A:I}-{B:3}-{C:3Z}</code> <code>BLT-Nav-007</code> Hat, Black, 1234 <code>SKU-{C:5P}</code> <code>SKU-01234</code>"},{"location":"format/#6-tips","title":"6. Tips","text":"<ul> <li>Always wrap column references in <code>{ }</code>.</li> <li>Use plain text outside braces for fixed words.</li> <li>Combine transformations to shorten, clean, or format values.</li> <li>If a column is empty, the SKU part will also be empty.</li> </ul> <p>\u2705 With these rules, you can create SKU formats that match your business needs \u2014 simple or advanced!</p>"}]}
1+
{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"","title":"Home","text":""},{"location":"#sku-generator","title":"SKU Generator","text":"<p>SKU Generator is a simple tool that helps you automatically create clean, consistent Stock Keeping Units (SKUs) from your product data. Instead of manually typing codes into spreadsheets, you can upload a product list and let SKU Generator build SKUs for you based on your chosen format. It\u2019s designed for sellers, store owners, and makers who want to save time, reduce errors, and keep their product catalogs organized across platforms like Shopify, Etsy, or Amazon.</p>"},{"location":"#whats-next","title":"\ud83d\udcda What's next?","text":"<p>\ud83d\udc49 Getting Started \u2013 a guide to using SKU Generator.</p>"},{"location":"format/","title":"How to Create a SKU Format","text":"<p>A SKU format is a simple recipe that tells the app how to build SKUs (Stock Keeping Units) from the columns in your CSV file. You don\u2019t need to know programming \u2014 just follow the rules below.</p>"},{"location":"format/#1-referencing-columns","title":"1. Referencing Columns","text":"<p>Each column in your CSV can be referenced by a letter:</p> <ul> <li><code>A</code> = first column</li> <li><code>B</code> = second column</li> <li><code>C</code> = third column</li> <li>\u2026and so on.</li> <li>After <code>Z</code>, it continues as <code>AA</code>, <code>AB</code>, <code>AC</code>\u2026</li> </ul>"},{"location":"format/#2-basic-format","title":"2. Basic Format","text":"<p>You can combine text and column references inside braces <code>{ }</code>.</p> <pre><code>{A}-{B}-{C}\n</code></pre> <ul> <li>If <code>A = \"Shirt\"</code> and <code>B = \"Red\"</code>, the SKU will be:</li> </ul> <pre><code>Shirt-Red\n</code></pre> <p>You can also add your own fixed text:</p> <pre><code>SKU-{A}-{B}\n</code></pre> <p>Gives:</p> <pre><code>SKU-Shirt-Red\n</code></pre>"},{"location":"format/#3-transformations","title":"3. Transformations","text":"<p>You can apply transformations to change how the column text is used. Add them after a colon <code>:</code> inside the braces.</p>"},{"location":"format/#common-transformations","title":"Common Transformations","text":"<ul> <li> <p><code>U</code> \u2192 Uppercase <code>{A:U}</code> \u2192 <code>SHIRT</code></p> </li> <li> <p><code>L</code> \u2192 Lowercase <code>{A:L}</code> \u2192 <code>shirt</code></p> </li> <li> <p><code>I</code> \u2192 Initials (first letter of each word) <code>{A:I}</code> \u2192 <code>S</code> (from \u201cShirt\u201d) <code>{A:I}</code> \u2192 <code>BLT</code> (from \u201cBlue Long Trousers\u201d)</p> </li> <li> <p><code>W</code> \u2192 First word only <code>{A:W}</code> \u2192 <code>Blue</code> (from \u201cBlue Long Trousers\u201d)</p> </li> <li> <p><code>C</code> \u2192 Consonants only <code>{A:C}</code> \u2192 <code>blngtrss</code> (from \u201cBlue Long Trousers\u201d)</p> </li> <li> <p><code>S</code> \u2192 Slug (clean up spaces and symbols with <code>_</code>) <code>{A:S}</code> \u2192 <code>blue_long_trousers</code></p> </li> <li> <p><code>n</code> (number) \u2192 Take first n characters (letters/numbers only) <code>{A:3}</code> \u2192 <code>Blu</code> (from \u201cBlue\u201d) <code>{B:2}</code> \u2192 <code>Rd</code> (from \u201cRed\u201d)</p> </li> <li> <p><code>nP</code> \u2192 Pad or trim to n characters <code>{B:5P}</code> \u2192 <code>RedXX</code> (pads with X if too short)</p> </li> <li> <p><code>nZ</code> \u2192 Zero-pad a number to n digits <code>{C:4Z}</code> \u2192 <code>0042</code> (if column C = 42)</p> </li> </ul>"},{"location":"format/#4-combining-multiple-transforms","title":"4. Combining Multiple Transforms","text":"<p>You can chain multiple transformations together:</p> <pre><code>{A:U3} \u2192 Take first 3 letters, then uppercase\n</code></pre> <p>If <code>A = \"trousers\"</code>, result is:</p> <pre><code>TRO\n</code></pre>"},{"location":"format/#5-examples","title":"5. Examples","text":"CSV Row (A=Name, B=Color, C=ID) Format Result Shirt, Red, 42 <code>{A}-{B}-{C}</code> <code>Shirt-Red-42</code> Shirt, Red, 42 <code>{A:U}-{B:U}</code> <code>SHIRT-RED</code> Blue Long Trousers, Navy, 7 <code>{A:I}-{B:3}-{C:3Z}</code> <code>BLT-Nav-007</code> Hat, Black, 1234 <code>SKU-{C:5P}</code> <code>SKU-01234</code>"},{"location":"format/#6-tips","title":"6. Tips","text":"<ul> <li>Always wrap column references in <code>{ }</code>.</li> <li>Use plain text outside braces for fixed words.</li> <li>Combine transformations to shorten, clean, or format values.</li> <li>If a column is empty, the SKU part will also be empty.</li> </ul> <p>\u2705 With these rules, you can create SKU formats that match your business needs \u2014 simple or advanced!</p>"}]}

0 commit comments

Comments
 (0)