diff --git a/app/javascript/components/AppIcon.vue b/app/javascript/components/AppIcon.vue
index c10f9ee..bc51e7a 100644
--- a/app/javascript/components/AppIcon.vue
+++ b/app/javascript/components/AppIcon.vue
@@ -33,6 +33,7 @@
menu: new IconData('menu'),
pencil: new IconData('pencil'),
person: new IconData('person'),
+ 'question-mark': new IconData('question-mark'),
star: new IconData('star'),
'star-empty': new IconData('star-empty'),
warning: new IconData('warning'),
diff --git a/app/javascript/components/AppIconicIcon.vue b/app/javascript/components/AppIconicIcon.vue
index 1baa53f..5e81dcb 100644
--- a/app/javascript/components/AppIconicIcon.vue
+++ b/app/javascript/components/AppIconicIcon.vue
@@ -10,6 +10,7 @@
import Link from "../iconic/svg/smart/link";
import Lock from "../iconic/svg/smart/lock";
import Menu from "../iconic/svg/smart/menu";
+ import QuestionMark from "../iconic/svg/smart/question-mark.svg"
import Person from "../iconic/svg/smart/person";
import Pencil from "../iconic/svg/smart/pencil";
import Star from "../iconic/svg/smart/star";
@@ -35,6 +36,7 @@
menu: Menu,
pencil: Pencil,
person: Person,
+ 'question-mark': QuestionMark,
star: Star,
'star-empty': StarEmpty,
warning: Warning,
diff --git a/app/javascript/components/RecipeEdit.vue b/app/javascript/components/RecipeEdit.vue
index ba17349..8d48f73 100644
--- a/app/javascript/components/RecipeEdit.vue
+++ b/app/javascript/components/RecipeEdit.vue
@@ -37,9 +37,9 @@
+ The description editor uses Markdown. Follow the link for a full + description of the syntax, but below is a quick reference. +
+Style | +Syntax | +Result | +
---|---|---|
Heading | +
+ +# Biggest Heading +## Smaller Heading +###### Smallest Heading ++ |
+
+ Biggest Heading+Smaller Heading+Smallest Heading+ |
+
Numbered Lists | +
+ +1. First Item +1. Second Item + 1. subitem A + 1. subitem B +1. Thrid Item ++ |
+
+
|
+
Lists | +
+ +* First Item +* Second Item + * subitem A + * subitem B +* Third Item ++ |
+
+
|
+
Basic Styles | +
+ +*italics* +**bold** +***bold italics*** +_underline_ +==highlight== ++ |
+
+
+ italics |
+
+## For the dough +1. Mix dry ingredients +1. Fold in egg whites +1. Sprinkle on sardines + +## For the sauce +1. Blend clams ==thoroughly== +1. Melt beef lard and add clam slurry + +### Optional (Toppings) +* Raw onion +* Sliced hard boiled eggs ++ +