Advertisement
Guest User

initial_list

a guest
Jan 31st, 2015
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (({:attrs {:id "ceci_est_un_titre_!!"} :content "Ceci est un titre !!" :tag :h1}
  2.   {:content "ceci est un paragraphe sdsds. ici aussi, le même." :tag :p}
  3.   {:content ({:content "Une liste" :tag :li}
  4.              {:content "Autre élément de liste" :tag :li})
  5.    :tag :ul})
  6.  ({:attrs {:id "sous-titre"} :content "sous-titre" :tag :h2}
  7.   {:content ({:content ("Liste " {:attrs nil :content "ordonnée" :tag :u} "")
  8.               :tag :li}
  9.              {:content ("Autre " {:attrs nil :content "élément" :tag :del} "")
  10.               :tag :li}
  11.              " ")
  12.    :tag :ol}
  13.   {:tag :hr}
  14.   {:content ("et "
  15.              {:attrs nil :content "un" :tag :i}
  16.              " "
  17.              {:attrs nil :content "dernier" :tag :b}
  18.              " paragraphe, "
  19.              {:attrs nil :content "en gras" :tag :b}
  20.              " voilà voilà. même "
  21.              {:attrs {:class "external" :href "http://www.monlien.com"}
  22.               :content "monlien.com"
  23.               :tag :a}
  24.              " et lien "
  25.              {:attrs {:class "internal" :href "normal.html"}
  26.               :content "Normal"
  27.               :tag :a}
  28.              ".")
  29.    :tag :p})
  30.  ({:attrs {:id "ceci_est_un_titre_!!"} :content "Ceci est un titre !!" :tag :h1}
  31.   {:content "ceci est un paragraphe sdsds." :tag :p}
  32.   {:content "ici aussi, le même." :tag :p}))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement