Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
markwkidd committed Dec 9, 2024
1 parent d51c152 commit 689f370
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ The content of the guides is written in a relatively simple text syntax called M
When linking from one page to another inside the crop guides, a combination of Jekyll and Markdown syntax can be used.

### Example: Internal Links
* [Link to a crop guide document several layers into the tree]({% link /guides/cucurbita/argyrosperma/index.md %})
* [Link to a crop guide document several layers into the tree]({% link guides/cucurbita/argyrosperma/index.md %})
* [Link to the README document in the root level of the tree]({% link README.md %})

#### Source
{% raw %}
```
* [Link to a crop guide document several layers into the tree]({% link /guides/cucurbita/argyrosperma/index.md %})
* [Link to a crop guide document several layers into the tree]({% link guides/cucurbita/argyrosperma/index.md %})
* [Link to the README document in the root level of the tree]({% link README.md %})
```
{% endraw %}
Expand All @@ -42,15 +42,15 @@ Images can be embedded using standard Markdown syntax, but this offers limited f
### Example: Image without caption

{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/cushaw-homepage-banner-1000x250.png"
url="assets/images/cucurbita/argyrosperma/cushaw-homepage-banner-1000x250.png"
alt="College of Cucurbita argyrosperma fruit in various situations"
%}

#### Source
{% raw %}
```
{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/cushaw-homepage-banner-1000x250.png"
url="assets/images/cucurbita/argyrosperma/cushaw-homepage-banner-1000x250.png"
alt="College of Cucurbita argyrosperma fruit in various situations"
%}
```
Expand All @@ -60,7 +60,7 @@ Images can be embedded using standard Markdown syntax, but this offers limited f
Invoke the template with a caption to wrap the image with the html element `figure` and add a caption wrapped in `figcaption`.

{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/cushaw-homepage-banner-1000x250.png"
url="assets/images/cucurbita/argyrosperma/cushaw-homepage-banner-1000x250.png"
alt="College of Cucurbita argyrosperma fruit in various situations"
caption="Sometimes a caption adds valuable information that can't easily be conveyed any other way."
%}
Expand All @@ -69,7 +69,7 @@ Invoke the template with a caption to wrap the image with the html element `figu
{% raw %}
```
{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/cushaw-homepage-banner-1000x250.png"
url="assets/images/cucurbita/argyrosperma/cushaw-homepage-banner-1000x250.png"
alt="College of Cucurbita argyrosperma fruit in various situations"
caption="Sometimes a caption adds valuable information that can't easily be conveyed any other way."
%}
Expand All @@ -80,7 +80,7 @@ Invoke the template with a caption to wrap the image with the html element `figu
### Example: Wrap text around floating captioned image

{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
url="assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
alt="Saved seeds in a colander"
caption="Seed saving and sharing is integrated into the guide"
thumbnail="true"
Expand All @@ -93,7 +93,7 @@ The text in this paragraph wraps to the left side of the image, assuming the win
{% raw %}
```
{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
url="assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
alt="Saved seeds in a colander"
caption="Seed saving and sharing is integrated into the guide"
thumbnail="true"
Expand All @@ -106,38 +106,38 @@ The text in this paragraph wraps to the left side of the image, assuming the win
Three thumbnail images can be placed in a row. The `<hr>` element or another element with `clear: right;` such as `<h1>` should be used after each row.

{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
url="assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
alt="Saved seeds in a colander"
caption="Seed saving and sharing is integrated into the guide"
thumbnail="true"
%}
{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
url="assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
alt="Saved seeds in a colander"
caption="Seed saving and sharing is integrated into the guide"
thumbnail="true"
%}
{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
url="assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
alt="Saved seeds in a colander"
caption="Seed saving and sharing is integrated into the guide"
thumbnail="true"
%}
<hr>
{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
url="assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
alt="Saved seeds in a colander"
caption="Seed saving and sharing is integrated into the guide"
thumbnail="true"
%}
{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
url="assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
alt="Saved seeds in a colander"
caption="Seed saving and sharing is integrated into the guide"
thumbnail="true"
%}
{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
url="assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
alt="Saved seeds in a colander"
caption="Seed saving and sharing is integrated into the guide"
thumbnail="true"
Expand All @@ -150,38 +150,38 @@ Three thumbnail images can be placed in a row. The `<hr>` element or another ele
{% raw %}
```
{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
url="assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
alt="Saved seeds in a colander"
caption="Seed saving and sharing is integrated into the guide"
thumbnail="true"
%}
{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
url="assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
alt="Saved seeds in a colander"
caption="Seed saving and sharing is integrated into the guide"
thumbnail="true"
%}
{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
url="assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
alt="Saved seeds in a colander"
caption="Seed saving and sharing is integrated into the guide"
thumbnail="true"
%}
<hr>
{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
url="assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
alt="Saved seeds in a colander"
caption="Seed saving and sharing is integrated into the guide"
thumbnail="true"
%}
{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
url="assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
alt="Saved seeds in a colander"
caption="Seed saving and sharing is integrated into the guide"
thumbnail="true"
%}
{% include embed_image.html
url="/assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
url="assets/images/cucurbita/argyrosperma/recipes/cut-fruit-with-seeds-350w.jpg"
alt="Saved seeds in a colander"
caption="Seed saving and sharing is integrated into the guide"
thumbnail="true"
Expand Down

0 comments on commit 689f370

Please sign in to comment.