We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a33ec2 commit a0c60b7Copy full SHA for a0c60b7
src/core/render/compiler.js
@@ -17,7 +17,6 @@ function getAndRemoveConfig (str = '') {
17
if (str) {
18
str = str
19
.replace(/:([\w-]+)=?([\w-]+)?/g, (m, key, value) => {
20
- console.log(key, value)
21
config[key] = (value && value.replace(/"/g, '')) || true
22
return ''
23
})
@@ -47,7 +46,6 @@ const compileMedia = {
47
46
}
48
},
49
iframe (url, title) {
50
- console.log(title)
51
return `<iframe src="${url}" ${title || 'width=100% height=400'}></iframe>`
52
53
video (url, title) {
0 commit comments