From 7d0509f3114bd3fdb48a89900c32adc4c4fa2f51 Mon Sep 17 00:00:00 2001 From: ffd8 Date: Mon, 24 Sep 2018 00:41:35 +0200 Subject: [PATCH] added tutorial short description short descriptions! --- tutorials/00-technical/index.md | 1 + tutorials/01-getting-started/index.md | 1 + tutorials/02-syntax/index.md | 1 + tutorials/03-hello-world/index.md | 1 + tutorials/04-finding-help/index.md | 1 + tutorials/05-drawing-color/index.md | 1 + tutorials/06-page-management/index.md | 1 + tutorials/07-selection-and-navigation/index.md | 1 + tutorials/08-transform-pageitems/index.md | 1 + tutorials/09-modifying-typography/index.md | 1 + tutorials/10-adding-images/index.md | 1 + tutorials/11-download-images/index.md | 1 + tutorials/12-data-csv/index.md | 1 + tutorials/13-export-pdf/index.md | 1 + 14 files changed, 14 insertions(+) diff --git a/tutorials/00-technical/index.md b/tutorials/00-technical/index.md index b97e2e32..48f4c0b9 100644 --- a/tutorials/00-technical/index.md +++ b/tutorials/00-technical/index.md @@ -2,6 +2,7 @@ author: admin layout: tutorial title: "Technical Details About basil.js" +description: "Where basil.js sits in comparison to Processing." --- ## The tech facts: diff --git a/tutorials/01-getting-started/index.md b/tutorials/01-getting-started/index.md index 1b35ed22..3301ce58 100644 --- a/tutorials/01-getting-started/index.md +++ b/tutorials/01-getting-started/index.md @@ -2,6 +2,7 @@ author: admin layout: tutorial title: "Getting Started" +description: "Installing basil.js." --- ## Installation diff --git a/tutorials/02-syntax/index.md b/tutorials/02-syntax/index.md index 50316344..915e3ec4 100644 --- a/tutorials/02-syntax/index.md +++ b/tutorials/02-syntax/index.md @@ -2,6 +2,7 @@ author: admin layout: tutorial title: "Syntax Check basil.js vs. Processing" +description: "JavaScript basics and differences between writing in basil.js and Processing." --- ## Similarities between basil.js and Processing diff --git a/tutorials/03-hello-world/index.md b/tutorials/03-hello-world/index.md index af70fa53..f2d47881 100644 --- a/tutorials/03-hello-world/index.md +++ b/tutorials/03-hello-world/index.md @@ -2,6 +2,7 @@ author: admin layout: tutorial title: "Hello World" +description: "The unavoidable hello world example." --- Open up the Adobe ExtendScript Editor, which is the script editor that comes with the Adobe Creative Suite. We will use this editor for our tutorials, but basically you could use any JavaScript editor. diff --git a/tutorials/04-finding-help/index.md b/tutorials/04-finding-help/index.md index d2081f62..d92338f2 100644 --- a/tutorials/04-finding-help/index.md +++ b/tutorials/04-finding-help/index.md @@ -2,6 +2,7 @@ author: admin layout: tutorial title: "Finding Help" +description: "Standing on the shoulders of giants... as usual." --- ## InDesign scripting inspirations diff --git a/tutorials/05-drawing-color/index.md b/tutorials/05-drawing-color/index.md index a382cb8c..27aeace5 100644 --- a/tutorials/05-drawing-color/index.md +++ b/tutorials/05-drawing-color/index.md @@ -2,6 +2,7 @@ author: admin layout: tutorial title: "Drawing and Colors" +description: "Adding new shapes and color swatches." --- ## General information diff --git a/tutorials/06-page-management/index.md b/tutorials/06-page-management/index.md index 682b828b..00fe5355 100644 --- a/tutorials/06-page-management/index.md +++ b/tutorials/06-page-management/index.md @@ -2,6 +2,7 @@ author: admin layout: tutorial title: "Page Management" +description: "How to add, remove, count and manage the pages of your document." --- ## Adding pages diff --git a/tutorials/07-selection-and-navigation/index.md b/tutorials/07-selection-and-navigation/index.md index c62f32f9..79829326 100644 --- a/tutorials/07-selection-and-navigation/index.md +++ b/tutorials/07-selection-and-navigation/index.md @@ -2,6 +2,7 @@ author: admin layout: tutorial title: "Selection and Navigation" +description: "How to stroll around in the InDesign object model." --- ## Get the mouse selection diff --git a/tutorials/08-transform-pageitems/index.md b/tutorials/08-transform-pageitems/index.md index eb5c2ff2..6909d9a7 100644 --- a/tutorials/08-transform-pageitems/index.md +++ b/tutorials/08-transform-pageitems/index.md @@ -2,6 +2,7 @@ author: admin layout: tutorial title: "Transform PageItems" +description: "Moving things around (i.e. PageItem) that you have created in code or by mouse." --- ``` diff --git a/tutorials/09-modifying-typography/index.md b/tutorials/09-modifying-typography/index.md index dfd46938..93c53096 100644 --- a/tutorials/09-modifying-typography/index.md +++ b/tutorials/09-modifying-typography/index.md @@ -2,6 +2,7 @@ author: admin layout: tutorial title: "Modifying Typography" +description: "Changing InDesign text programatically." --- ## 1. Getting started with type diff --git a/tutorials/10-adding-images/index.md b/tutorials/10-adding-images/index.md index e56b04ab..7a72aad5 100644 --- a/tutorials/10-adding-images/index.md +++ b/tutorials/10-adding-images/index.md @@ -2,6 +2,7 @@ author: admin layout: tutorial title: "Adding Images" +description: "Add pictures to your project." --- When adding images to your document, one of the most important factors is where does the image sit relative to your document. Here are a few techniques for importing and manipulating images. diff --git a/tutorials/11-download-images/index.md b/tutorials/11-download-images/index.md index c5ec6b6b..596a667d 100644 --- a/tutorials/11-download-images/index.md +++ b/tutorials/11-download-images/index.md @@ -2,6 +2,7 @@ author: admin layout: tutorial title: "Download Images" +description: "Download images from the web and add them to your document." --- Obviously you have to download a resources first, before you can you can make use of it in an indesign document. diff --git a/tutorials/12-data-csv/index.md b/tutorials/12-data-csv/index.md index f3353c92..6859cb4c 100644 --- a/tutorials/12-data-csv/index.md +++ b/tutorials/12-data-csv/index.md @@ -2,6 +2,7 @@ author: admin layout: tutorial title: "Data - CSV" +description: "Reading data from external files in CSV format." --- ## CSV - Data to a circles diff --git a/tutorials/13-export-pdf/index.md b/tutorials/13-export-pdf/index.md index 79ef8a74..bf65d70c 100644 --- a/tutorials/13-export-pdf/index.md +++ b/tutorials/13-export-pdf/index.md @@ -2,6 +2,7 @@ author: admin layout: tutorial title: "Export PDF" +description: "Create hundreds of variation in a single InDesign project." --- ```