diff --git a/article-processor.md b/article-processor.md new file mode 100644 index 0000000..8d68d1e --- /dev/null +++ b/article-processor.md @@ -0,0 +1,255 @@ +--- +title: Article Processor +description: Generate a file to upload to this site, using article metadata. +--- + + +### Prerequisites + +Before you begin, ensure you have, as a minimum: +* a headline, +* the name(s) of the author(s), +* a header image, which will be shown behind the headline (so the content of this image can't be vital, like a graph), +* a caption for your header image, +* the copyright attribution for your header image, +* a brief description (one or two short sentences) of your article, and +* your article content. + +
### My Heading
+
+1. Numbered item
+ * Indented bulleted item
+
+will produce:
+
+++ +Other formatting can be done with the following: + +* For italics, use `*my italic text*`. +* For bold, use `**my bold text**`. +* For bold and italics, use `***my bold, italic text***`. +* For links, use `[text to show in article](URL)`. +* To include an extra image (besides the cover image), use: +My Heading
+ ++
+ +- Numbered item
++
+- Indented bulleted item
+
{% raw %}{% include image.html caption="IMAGE_CAPTION" copyright="IMAGE_COPYRIGHT" %}{% endraw %}
+Replace `IMAGE_CAPTION` with a caption for the image, and `IMAGE COPYRIGHT` with the copyright owner. E.g.:
+{% raw %}{% include image.html caption="Test image caption" copyright="Reading School" %}{% endraw %}
+{% raw %}{% include video.html id="VIDEO_ID" %}{% endraw %}
+Replace `VIDEO_ID` with the YouTube video ID (e.g. for https://www.youtube.com/watch?v=dQw4w9WgXcQ, the video ID is dQw4w9WgXcQ). An example:
+{% raw %}{% include video.html id="dQw4w9WgXcQ" %}{% endraw %}
+# Headline
+
+## Heading2
+
+### Heading3
+
+#### Heading4
+
+##### Heading5
+
+###### Heading6
+
+Some text.
+
+1. Numbered item 1
+2. **Numbered item 2**
+* *Bullet 1*
+* Bullet 2
+ 1. Numbered item 3
+
+***Bold & italics***
+
+A link to [Google](https://google.com).
+
+Will produce:
+
+++ +Headline
+ +Heading2
+ +Heading3
+ +Heading4
+ +Heading5
+ +Heading6
+ +Some text.
+ ++
+- Numbered item 1
+- Numbered item 2
++
+ +- Bullet 1
+- Bullet 2
++
+- Numbered item 3
+Bold & italics
+ +A link to Google. +