Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove console.log
  • Loading branch information
kellyjosephprice committed May 29, 2024
commit 25dfbfc019f0b0f06d56b7d0e4d36cba4c54ddab
3 changes: 0 additions & 3 deletions processor/compile/image.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ const image = (node: Image) => {
const { align, className, width } = node.data?.hProperties || {};
const complexImage: boolean = Boolean(width) || Boolean(className) || Boolean(align);

console.log(JSON.stringify({ node }, null, 2));

if (complexImage) {
const attributes = Object.keys(node.data?.hProperties)
.map(key => `${key}="${node.data?.hProperties[key]}"`)
Expand All @@ -17,4 +15,3 @@ const image = (node: Image) => {
};

export default image;