this repo has no description
at cactus 143 lines 2.7 kB view raw
1ʀᴇᴀʟʟʏ ɴᴏᴛ 2ꜰᴇᴇʟɪɴ ᴜᴘ 3ᴛᴏ ɪᴛ ʀɪɢʜᴛ 4ɴᴏᴡ. sᴏʀʀʏ. 5 6 7 8🅣 AST: object 9 10⎬−−🅟.type: string 11 12⎬−−🅟.args?: object 13 14⎬−−🅟.contents?: Array 15 16 ⎬−−🅟...: AST or string 17 18🅣 Parser: function 19 20⎬−−🅡 return: AST 21 22⎬−−🅐 param 0: string 23 24⎬−−🅐 param 1?: ? 25 26🅣 Langs_Mixin: interface 27 28⎬−−🅘.langs?: object 29⎪ ⎪ 30⎪ ⎬−−🅟...: Parser 31 32⎬−−🅘.default_lang?: Parser 33 34 35 36🅕 parse.js: file 37 38⎬−−🅖 Markup_12y2: class implements Langs_Mixin 39 40 ⎬−−🅘 this.parse: Parser 41 42 ⎬−−🅘 this.langs: object 43 44 ⎬−−🅟.12y2: Parser 45 46 47 48🅕 legacy.js: file 49 50⎬−−🅖 Markup_Legacy: class implements Langs_Mixin 51 52 ⎬−−🅘 this.default_lang: Parser 53 54 ⎬−−🅘 this.langs: object 55 56 ⎬−−🅟.12y: Parser 57 58 ⎬−−🅟.bbcode: Parser 59 60 ⎬−−🅟.plaintext: Parser 61 62 63 64🅕 langs.js: file 65 66⎬−−🅖 Markup_Langs: class 67 68 ⎬−−🅜 constructor 69 ⎪ ⎪ 70 ⎪ ⎬−−🅐.0: Array 71 ⎪ ⎪ 72 ⎪ ⎬−−🅟...: Langs_Mixin 73 74 ⎬−−🅜.prototype.include: function 75 ⎪ ⎪ 76 ⎪ ⎬−−🅐 param 0: Langs_Mixin 77 78 ⎬−−🅜.prototype.get: function 79 ⎪ ⎪ 80 ⎪ ⎬−−🅡 return: Parser 81 ⎪ ⎪ 82 ⎪ ⎬−−🅐 param 0?: string 83 84 ⎬−−🅜.prototype.parse: function 85 ⎪ ⎪ 86 ⎪ ⎬−−🅡 return: AST 87 ⎪ ⎪ 88 ⎪ ⎬−−🅐 param 0: string 89 ⎪ ⎪ 90 ⎪ ⎬−−🅐 param 1?: string 91 ⎪ ⎪ 92 ⎪ ⎬−−🅐 param 2?: ? 93 94 ⎬−−🅘 this.langs: object(null) 95 96 ⎬−−🅘 this.default_lang: Parser 97 98 99 100🅕 render.js: file 101102⎬−−🅖.Markup_Render_Dom: class 103104 ⎬−−🅘 this.render: function 105106 ⎬−−🅘 this.create: Object 107108 ⎬−−🅘 this.url_scheme: Object 109 110 111 112🅕 helpers.js: file 113114⎬−−🅖.Markup: Object 115116 ⎬−−🅟.css_class: string = "Markup" 117118 ⎬−−🅟.langs: Markup_Langs 119120 ⎬−−🅟.renderer: Markup_Render_Dom 121122 ⎬−−🅟.convert_lang: function 123124 ⎬−−🅡 return: ParentNode 125126 ⎬−−🅐 param 0: string 127128 ⎬−−🅐 param 1?: string 129130 ⎬−−🅐 param 2?: Element 131132 ⎬−−🅐 param 3?: ? 133 134 135 136🅣 - Type 137🅕 - File 138🅖 - Global 139🅟 - Property 140🅡 - Return 141🅐 - pArameter 142🅘 - Instance property 143🅜 - prototype propertyM