2021-04-13 21:41:16 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#This script is used to enable Etherpad to export to PDF/ODT
|
|
|
|
# 1- Edit /usr/share/etherpad-lite/settings.json
|
2021-04-15 19:32:56 +08:00
|
|
|
# 2- Set "soffice" config to this script path (default "/usr/share/bbb-libreoffice-conversion/etherpad-export.sh")
|
2021-04-13 21:41:16 +08:00
|
|
|
|
2021-04-14 01:12:27 +08:00
|
|
|
/usr/share/bbb-libreoffice-conversion/convert.sh "$8" "$(echo $8 | sed -E -e 's/html|odt/'$7'/')" $7
|
2021-04-13 21:41:16 +08:00
|
|
|
|
|
|
|
exit 0
|