diff options
Diffstat (limited to 'lib/output/base.js')
-rw-r--r-- | lib/output/base.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/output/base.js b/lib/output/base.js index 39e46c2..d301b14 100644 --- a/lib/output/base.js +++ b/lib/output/base.js @@ -100,6 +100,11 @@ Output.prototype.onRelativeLink = function(currentPage, href) { return href; }; +// Output a SVG as a file +Output.prototype.onOutputSVG = function(page, svg) { + return null; +}; + // Finish the generation Output.prototype.finish = function() { |