1
0

image.ts 233 B

1234567891011
  1. Macro.add('image', {
  2. skipArgs : false,
  3. handler : function () {
  4. try{
  5. $(this.output).wiki(`<img src="images/${this.args[0]}"/>`);
  6. }
  7. catch (ex) {
  8. return this.error('ERROR in JUMPMARKER-widget: ' + ex.message);
  9. }
  10. }
  11. });