mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 07:35:05 -04:00
Added vitepress for documentation. (#6270)
This commit is contained in:
parent
a5a427fb84
commit
d004d19dd7
43 changed files with 4322 additions and 27 deletions
|
@ -4,7 +4,7 @@ Most of these hooks are called during or in order to set up the formatting
|
|||
process.
|
||||
|
||||
=== documentReady
|
||||
Called from: src/templates/pad.html
|
||||
Called from: `src/templates/pad.html`
|
||||
|
||||
Things in context:
|
||||
|
||||
|
@ -14,7 +14,7 @@ This hook proxies the functionality of jQuery's `$(document).ready` event.
|
|||
|
||||
=== aceDomLinePreProcessLineAttributes
|
||||
|
||||
Called from: src/static/js/domline.js
|
||||
Called from: `src/static/js/domline.js`
|
||||
|
||||
Things in context:
|
||||
|
||||
|
@ -36,7 +36,7 @@ more.
|
|||
|
||||
=== aceDomLineProcessLineAttributes
|
||||
|
||||
Called from: src/static/js/domline.js
|
||||
Called from: `src/static/js/domline.js`
|
||||
|
||||
Things in context:
|
||||
|
||||
|
@ -58,7 +58,7 @@ more.
|
|||
|
||||
=== aceCreateDomLine
|
||||
|
||||
Called from: src/static/js/domline.js
|
||||
Called from: `src/static/js/domline.js`
|
||||
|
||||
Things in context:
|
||||
|
||||
|
@ -78,7 +78,7 @@ question, and cls will be the new class of the element going forward.
|
|||
|
||||
=== acePostWriteDomLineHTML
|
||||
|
||||
Called from: src/static/js/domline.js
|
||||
Called from: `src/static/js/domline.js`
|
||||
|
||||
Things in context:
|
||||
|
||||
|
@ -89,7 +89,7 @@ page.
|
|||
|
||||
=== aceAttribsToClasses
|
||||
|
||||
Called from: src/static/js/linestylefilter.js
|
||||
Called from: `src/static/js/linestylefilter.js`
|
||||
|
||||
Things in context:
|
||||
|
||||
|
@ -107,7 +107,7 @@ be parsed into a valid class string.
|
|||
|
||||
=== aceAttribClasses
|
||||
|
||||
Called from: src/static/js/linestylefilter.js
|
||||
Called from: `src/static/js/linestylefilter.js`
|
||||
|
||||
Things in context:
|
||||
1. Attributes - Object of Attributes
|
||||
|
@ -127,7 +127,7 @@ exports.aceAttribClasses = function(hook_name, attr, cb){
|
|||
|
||||
=== aceGetFilterStack
|
||||
|
||||
Called from: src/static/js/linestylefilter.js
|
||||
Called from: `src/static/js/linestylefilter.js`
|
||||
|
||||
Things in context:
|
||||
|
||||
|
@ -143,7 +143,7 @@ later used by the aceCreateDomLine hook (documented above).
|
|||
|
||||
=== aceEditorCSS
|
||||
|
||||
Called from: src/static/js/ace.js
|
||||
Called from: `src/static/js/ace.js`
|
||||
|
||||
Things in context: None
|
||||
|
||||
|
@ -152,7 +152,7 @@ should be an array of resource urls or paths relative to the plugins directory.
|
|||
|
||||
=== aceInitInnerdocbodyHead
|
||||
|
||||
Called from: src/static/js/ace.js
|
||||
Called from: `src/static/js/ace.js`
|
||||
|
||||
Things in context:
|
||||
|
||||
|
@ -165,7 +165,7 @@ editor HTML document.
|
|||
|
||||
=== aceEditEvent
|
||||
|
||||
Called from: src/static/js/ace2_inner.js
|
||||
Called from: `src/static/js/ace2_inner.js`
|
||||
|
||||
Things in context:
|
||||
|
||||
|
@ -182,7 +182,7 @@ your plugin) that use the information provided by the edit event.
|
|||
|
||||
=== aceRegisterNonScrollableEditEvents
|
||||
|
||||
Called from: src/static/js/ace2_inner.js
|
||||
Called from: `src/static/js/ace2_inner.js`
|
||||
|
||||
Things in context: None
|
||||
|
||||
|
@ -203,7 +203,7 @@ exports.aceRegisterNonScrollableEditEvents = function(){
|
|||
|
||||
=== aceRegisterBlockElements
|
||||
|
||||
Called from: src/static/js/ace2_inner.js
|
||||
Called from: `src/static/js/ace2_inner.js`
|
||||
|
||||
Things in context: None
|
||||
|
||||
|
@ -213,7 +213,7 @@ call for those elements.
|
|||
|
||||
=== aceInitialized
|
||||
|
||||
Called from: src/static/js/ace2_inner.js
|
||||
Called from: `src/static/js/ace2_inner.js`
|
||||
|
||||
Things in context:
|
||||
|
||||
|
@ -228,7 +228,7 @@ use in formatting hooks.
|
|||
|
||||
=== postAceInit
|
||||
|
||||
Called from: src/static/js/pad.js
|
||||
Called from: `src/static/js/pad.js`
|
||||
|
||||
Things in context:
|
||||
|
||||
|
@ -240,7 +240,7 @@ Things in context:
|
|||
|
||||
=== postToolbarInit
|
||||
|
||||
Called from: src/static/js/pad_editbar.js
|
||||
Called from: `src/static/js/pad_editbar.js`
|
||||
|
||||
Things in context:
|
||||
|
||||
|
@ -255,14 +255,14 @@ Usage examples:
|
|||
|
||||
=== postTimesliderInit
|
||||
|
||||
Called from: src/static/js/timeslider.js
|
||||
Called from: `src/static/js/timeslider.js`
|
||||
|
||||
There doesn't appear to be any example available of this particular hook being
|
||||
used, but it gets fired after the timeslider is all set up.
|
||||
|
||||
=== goToRevisionEvent
|
||||
|
||||
Called from: src/static/js/broadcast.js
|
||||
Called from: `src/static/js/broadcast.js`
|
||||
|
||||
Things in context:
|
||||
|
||||
|
@ -274,7 +274,7 @@ be any example available of this particular hook being used.
|
|||
|
||||
=== userJoinOrUpdate
|
||||
|
||||
Called from: src/static/js/pad_userlist.js
|
||||
Called from: `src/static/js/pad_userlist.js`
|
||||
|
||||
Things in context:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue