/** * Very simple basic rule set * * Allows * , , , ,

,

, ,
, ,
    ,
      ,
    • * * For a proper documentation of the format check advanced.js */ var wysihtmlParserRules = { tags: { strong: {}, b: {}, i: {}, em: {}, br: {}, p: {}, div: {}, span: {}, ul: {}, ol: {}, li: {}, a: { set_attributes: { target: "_blank", rel: "nofollow" }, check_attributes: { href: "url" // important to avoid XSS } } } };