Skip to content

Commit cc1b557

Browse files
authored
Merge pull request #12 from tomhatzer/bugfix/fix_closing_html_tag
Fix closing html tag
2 parents a0c55a7 + dff32cb commit cc1b557

5 files changed

Lines changed: 11 additions & 9 deletions

File tree

dist/grapesjs-plugin-export.min.js

Lines changed: 7 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/grapesjs-plugin-export.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "grapesjs-plugin-export",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"description": "Export GrapesJS templates to ZIP",
55
"main": "dist/grapesjs-plugin-export.min.js",
66
"scripts": {

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default (editor, opts = {}) => {
2323
<link rel="stylesheet" href="./css/style.css">
2424
</head>
2525
<body>${ed.getHtml()}</body>
26-
<html>`,
26+
</html>`,
2727
},
2828
isBinary: null,
2929
...opts,

0 commit comments

Comments
 (0)