From d6a2e05bff39731d5f3149b187439536114f4839 Mon Sep 17 00:00:00 2001 From: ShivankSahai Date: Mon, 20 May 2019 23:25:25 +0530 Subject: [PATCH] added markdown examples in examples.html and wysiwyg.html --- examples/index.html | 48 +++++++++++++++++++++++++++++++--- examples/tux.png | Bin 0 -> 2028 bytes examples/wysiwyg.html | 58 +++++++++++++++++++++++++++++++++++------- 3 files changed, 94 insertions(+), 12 deletions(-) create mode 100644 examples/tux.png diff --git a/examples/index.html b/examples/index.html index 34ff8f6..ee782f2 100644 --- a/examples/index.html +++ b/examples/index.html @@ -33,15 +33,57 @@

-### Hello, World +# Hello. This is heading level 1. + +## Hello. This is heading level 2. + +### Hello. This is heading level 3. + +#### Hello. This is heading level 4. + +##### Hello. This is heading level 5. + +###### Hello. This is heading level 6. This is a paragraph. -* this +This is used to show a line break, +just break your text into multiple lines and include 2 or more spaces after each line, + +This is **bold text** + +This is *italic text* + +This is both ***bold and italic*** + +> This is a blockquote + +* This * is -* a +* an +* unordered * list +1. This +2. is +3. an +4. ordered +5. list + +This is an image +![Tux, the Linux mascot](tux.png) + +This is a [link](https://google.com). + +This is a table + +Food | Category +---- | ---- +Carrot | Veg +Chicken | Non-Veg + + +

diff --git a/examples/tux.png b/examples/tux.png new file mode 100644 index 0000000000000000000000000000000000000000..12283377126e92d350a165ff02979eb79b96b4c5 GIT binary patch literal 2028 zcmV-P)Tk|Nn7c zDVcZ|!j=`Mf);RF8gp-CRYx4%suTFW5jry+jBgmUj1?^@9_q9babq}FQ%FfgI!HYn z&!7}zQ5$|`8GdOfa%)wAeR6VVM*RHz`T6<%{r&d#_U`WP>FMd_=H~D3@A~@s=;-M8 z_xJPj^X%;G^z`)W>+6EgU1I!AFpw| znHAE(8G>0Ip^vlJGp?D7A@f^8jAPH0avwwH&x?skqB$G_)0lHeVrZCQyGZB=W+`6{ z)=aDQr&Di1OY&t2^u)6ius$jCOKc}F(dVm@r2bgbM~g4$8P7(C_@cyUK2|!dBO*rH z^GXDrh{1%^ApM!jizR0NLv4D&K#TEpiAyyO(EPzoI4yHZJfbj>L?Q3)+UC$R){GKf zDW|z}B8pm>IhP~>h+F`YsF83kjK0MD`ev*@R=h~!KOqsEjnMeEOw(-jA2(h5I5)GkVP2XfQ)*dMN>#;DDOF|P4X-yT z88b-m-&76R6#v7ll69rdP;FM0 zN&K((u1&Swzlx>W=jrK}*@j35*sE%_-F1qhJh1bdJ=asq0%v|%7FAQaZt|iD-yez9o)ZE zNAZtGOfbv95&_M$5`Ak6Ed5tdLo~}#$iWFZ;r&yjl}eZ2UFxuAn7Tdmrywsej3lC# z!Fu`8myV4qPekm^gkxC=y!GgvV5eUEiVjI^!GtK<0s0}Suoxp(V8%(olyczttwcjET``gk@J z=e?m=97yygkca!b9*_5zZ$n9Rp$r1y+V4lvDmvtGSYUS7_+xz_Ci(RNx8>>a?k%?u z^g>wQ+xrU4?Ny_smLGTLxgK=@f5{sB$cY3afi2I5}Dg7m3l|hk72mN$pt^`C3Ug(fxj}M&{aff8UVW| z73kx5W5=No`~EA;SRQZQJDUa1|1SmD{@LSCu9#SeLY(D4*urhlpV;GR9K%Sk)m%bgy5nLwg0YZtu0qU+3Nnd>mAt z4QgDSMG`W_9PrFORWB6%=ay>&+f==#Kuw~t{P56TTBYgWMvYbxS;!ANHK2QaZA@FP z1S&N`Znh4e6ZMv5xBGujNnEHgR%lyExf{C=G(=Mq%cW7OF_sW@ASl!b85*pSS(qVX zt;X0iTg5=C##p1lJ$_E2w!W+-YLpZWHrlP*#< zN|kFQyx|Kq0rwVx3pLITOiaHu8-C(GeYuczbxl^7Bd^ALu)s!5k)F0a_G*e1LOwBS zdhi5WYq7A_n*U?d(_{}`sc8!6B~=+r6!4S8gk#e#T7;NbV~X8m@LdvX~``?S3}MH74d6}rJ5qk5on8xNr5<`%U?I`s{OuyI#T4| z#BNHlhJSj_qfmO*08G~-qN`^vi6}BGFy&+vz9ARym1JP-*f4}hjKK8KGFqD#wSvJ) z>8UWv$USb>je;@DO6mEiWC;Yae-_OzW|ypBN5d~|E%!y1?)1%AFKHc)9L|nzT<5V| zua@b=;9|u_DEMkmxJGPpeI3p^7DL*r0=}wT4Lv+>8cF@}L+o7d7$TAw*j~K3OpL$i zTfWW5LW?wf_5QHl0#>)lXGb_T0MiK<=lMTHzHP)6*2Lfd0000< KMNUMnLSTZsu=utB literal 0 HcmV?d00001 diff --git a/examples/wysiwyg.html b/examples/wysiwyg.html index 9e1133f..2db3a4a 100644 --- a/examples/wysiwyg.html +++ b/examples/wysiwyg.html @@ -36,15 +36,55 @@

-### Hello, World - -This is a paragraph. - -* this -* is -* a -* list - + # Hello. This is heading level 1. + + ## Hello. This is heading level 2. + + ### Hello. This is heading level 3. + + #### Hello. This is heading level 4. + + ##### Hello. This is heading level 5. + + ###### Hello. This is heading level 6. + + This is a paragraph. + + This is used to show a line break, + just break your text into multiple lines and include 2 or more spaces after each line, + + This is **bold text** + + This is *italic text* + + This is both ***bold and italic*** + + > This is a blockquote + + * This + * is + * an + * unordered + * list + + 1. This + 2. is + 3. an + 4. ordered + 5. list + + This is an image + ![Tux, the Linux mascot](tux.png) + + This is a [link](https://google.com). + + This is a table + + Food | Category + ---- | ---- + Carrot | Veg + Chicken | Non-Veg +