fourplusone / etherpad-plugins

Plugins for Etherpad Lite
MIT License
23 stars 29 forks source link

HTML Export #2

Closed edy closed 11 years ago

edy commented 12 years ago

headings plugin needs HTML export

fourplusone commented 12 years ago

Yep. Will try to add it tomorrow, but therefore some hooks need to be added to etherpad lite

edy commented 12 years ago

i managed to implement html export. will try to create pull requests for ep_headings and etherpad very soon.

here you can see a diff of the original HTML export my LaTeX export: http://www.diffnow.com/?report=xnjv1

JohnMcLear commented 11 years ago

Hooks exist now..


    var lineContentFromHook = hooks.callAllStr("getLineHTMLForExport",
    {
      line: line,
      apool: apool,
      attribLine: attribLines[i],
      text: textLines[i]
    }, " ", " ", "");
    if (lineContentFromHook)
fourplusone commented 11 years ago

fixed