diff --git a/_site/comsci/index.html b/_site/comsci/index.html index 4993ba7..219c54c 100644 --- a/_site/comsci/index.html +++ b/_site/comsci/index.html @@ -64,7 +64,7 @@ -
  • BBC Young Reporter Article Creator
  • +
  • BBC Young Reporter Article Generator
  • diff --git a/_site/index.html b/_site/index.html index decd318..04075b6 100644 --- a/_site/index.html +++ b/_site/index.html @@ -64,7 +64,7 @@ -
  • BBC Young Reporter Article Creator
  • +
  • BBC Young Reporter Article Generator
  • @@ -116,7 +116,7 @@
    -

    BBC Young Reporter Article Creator

    +

    BBC Young Reporter Article Generator

    A tool to create markdown files from news articles and their metadata for uploading to the Reading School BBC Young Reporter website.

    See more diff --git a/_site/luhn-algorithm/index.html b/_site/luhn-algorithm/index.html index fc61d10..410fec1 100644 --- a/_site/luhn-algorithm/index.html +++ b/_site/luhn-algorithm/index.html @@ -64,7 +64,7 @@ -
  • BBC Young Reporter Article Creator
  • +
  • BBC Young Reporter Article Generator
  • diff --git a/_site/site-theme/index.html b/_site/site-theme/index.html index e83714a..dfb19cb 100644 --- a/_site/site-theme/index.html +++ b/_site/site-theme/index.html @@ -64,7 +64,7 @@ -
  • BBC Young Reporter Article Creator
  • +
  • BBC Young Reporter Article Generator
  • diff --git a/_site/young-reporter/index.html b/_site/young-reporter/index.html index c6fa9c9..1e33cb4 100644 --- a/_site/young-reporter/index.html +++ b/_site/young-reporter/index.html @@ -15,7 +15,7 @@ - + @@ -23,7 +23,7 @@ - BBC Young Reporter Article Creator | Matthew Grove + BBC Young Reporter Article Generator | Matthew Grove @@ -65,7 +65,7 @@
  • BBC Young Reporter Article Creator
  • + >BBC Young Reporter Article Generator @@ -92,16 +92,18 @@
    -

    BBC Young Reporter Article Creator

    +

    BBC Young Reporter Article Generator

    -

    Fill in the fields below, and then click the download button to create a file to be uploaded to Reading School’s BBC Young Reporter website.

    +

    Instructions

    -

    Give the authors’ names in the format First_Name Last_Initial, and separate multiple authors with a comma - e.g. John D, Emma S

    +

    Fill in the fields below, and then click the download button to generate a file to be uploaded to Reading School’s BBC Young Reporter website.

    + +

    Give the authors’ names in the format First_Name Last_Initial, and separate multiple authors with a comma - e.g. John D, Emma S.

    • If there are any headings inside your article, please place # in front of them.
    • @@ -130,18 +132,80 @@

      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
      • +
      • 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:
      {% include image.html id=ID_OF_IMAGE caption="IMAGE_CAPTION" copyright="IMAGE_COPYRIGHT" %}

      replacing ID_OF_IMAGE with a unique ID for the image in your article - start at 1 for the first image (excluding the cover image).

      The cover image for your article must be a JPEG image, and have the jpg file extension. If your image is a PNG, you can convert it using an online tool. The file name must also be the same as your article’s file name. This will be provided to you when you download the file from this page. E.g. if the file you download from this page is news-article.md then your cover image must be news-article.jpg (capital letters DO matter).

      -

      Any extra images for your article must be in the format: ARTICLE_FILE_NAME--extra-IMAGE_ID.jpg, where you replace ARTICLE_FILE_NAME with the file name you used for the cover image, and IMAGE_ID with the ID you gave the image when you inserted it into your article’s body, as seen above. E.g.: news-article--extra-1.jpg .

      +

      Any extra images for your article must be in the format: ARTICLE_FILE_NAME--extra-IMAGE_ID.jpg, where you replace ARTICLE_FILE_NAME with the file name you used for the cover image, and IMAGE_ID with the ID you gave the image when you inserted it into your article’s body, as seen above. E.g.: news-article--extra-1.jpg.

      + +
      + +

      Example

      + +
      # Headline
      +
      +## Heading2
      +
      +### Heading3
      +
      +#### Heading4
      +
      +##### Heading5
      +
      +###### Heading6
      +
      +Some text.
      +
      +1. Numbered item 1
      +2. **Numbered item 2**
      +* *Bullet 1*
      +* Bullet 2
      +
      +***Bold & italics***
      +
      +A link to [Google](https://google.com).
      + +

      Will produce:

      + +
      +

      Headline

      + +

      Heading2

      + +

      Heading3

      + +

      Heading4

      + +
      Heading5
      + +
      Heading6
      + +

      Some text.

      + +
        +
      1. Numbered item 1
      2. +
      3. Numbered item 2
      4. +
      +
        +
      • Bullet 1
      • +
      • Bullet 2
      • +
      + +

      Bold & italics

      + +A link to Google. +
      + +
      + +

      Generator

      @@ -247,6 +311,12 @@ $("form input[type='text']").keypress(function(event) { }); + +
    diff --git a/young-reporter/index.md b/young-reporter/index.md index 1d40836..ab6d5d7 100644 --- a/young-reporter/index.md +++ b/young-reporter/index.md @@ -1,13 +1,15 @@ --- -title: BBC Young Reporter Article Creator +title: BBC Young Reporter Article Generator description: A tool to create markdown files from news articles and their metadata for uploading to the Reading School BBC Young Reporter website. layout: default icon: comment --- -Fill in the fields below, and then click the *download* button to create a file to be uploaded to Reading School's BBC Young Reporter website. +### Instructions -Give the authors' names in the format `First_Name Last_Initial`, and separate multiple authors with a comma - e.g. `John D, Emma S` +Fill in the fields below, and then click the *download* button to generate a file to be uploaded to Reading School's BBC Young Reporter website. + +Give the authors' names in the format `First_Name Last_Initial`, and separate multiple authors with a comma - e.g. `John D, Emma S`. * If there are any headings inside your article, please place `# ` in front of them. * For subtitles, use `## `, as so on for smaller headings, up to and including `###### `. @@ -33,17 +35,79 @@ 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 +* 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:
    {% raw %}{% include image.html id=ID_OF_IMAGE caption="IMAGE_CAPTION" copyright="IMAGE_COPYRIGHT" %}{% endraw %}
    replacing `ID_OF_IMAGE` with a unique ID for the image in your article - start at 1 for the first image (excluding the cover image). The cover image for your article must be a JPEG image, and have the `jpg` file extension. If your image is a PNG, you can [convert it using an online tool](https://png2jpg.com/). The file name must also be the same as your article's file name. This will be provided to you when you download the file from this page. E.g. if the file you download from this page is `news-article.md` then your cover image must be `news-article.jpg` (capital letters **DO** matter). -Any extra images for your article must be in the format: `ARTICLE_FILE_NAME--extra-IMAGE_ID.jpg`, where you replace `ARTICLE_FILE_NAME` with the file name you used for the cover image, and `IMAGE_ID` with the ID you gave the image when you inserted it into your article's body, as seen above. E.g.: `news-article--extra-1.jpg` . +Any extra images for your article must be in the format: `ARTICLE_FILE_NAME--extra-IMAGE_ID.jpg`, where you replace `ARTICLE_FILE_NAME` with the file name you used for the cover image, and `IMAGE_ID` with the ID you gave the image when you inserted it into your article's body, as seen above. E.g.: `news-article--extra-1.jpg`. + +
    + +### Example + +
    # Headline
    +
    +## Heading2
    +
    +### Heading3
    +
    +#### Heading4
    +
    +##### Heading5
    +
    +###### Heading6
    +
    +Some text.
    +
    +1. Numbered item 1
    +2. **Numbered item 2**
    +* *Bullet 1*
    +* Bullet 2
    +
    +***Bold & italics***
    +
    +A link to [Google](https://google.com).
    + +Will produce: + +
    +

    Headline

    + +

    Heading2

    + +

    Heading3

    + +

    Heading4

    + +
    Heading5
    + +
    Heading6
    + +

    Some text.

    + +
      +
    1. Numbered item 1
    2. +
    3. Numbered item 2
    4. +
    +
      +
    • Bullet 1
    • +
    • Bullet 2
    • +
    + +

    Bold & italics

    + +A link to Google. +
    + +
    + +### Generator
    @@ -147,4 +211,10 @@ $("form input[type='text']").keypress(function(event) { event.preventDefault(); } }); - \ No newline at end of file + + + \ No newline at end of file