Skip to content

Commit

Permalink
chore: remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyjosephprice committed Dec 5, 2024
1 parent c77f5a7 commit fb6eb7f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion processor/compile/variable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const variable = (node: Variable) => {
// @note: coming from RDMD, it's set as `variable`. But when mdx is parsed,
// it's set as `name`
const name = node.data.hProperties.variable || node.data.hProperties.name;
console.log(JSON.stringify({ node }, null, 2));
return name.toString().match(/ /) ? `{user[${JSON.stringify(name)}]}` : `{user.${name}}`;
};

Expand Down

0 comments on commit fb6eb7f

Please sign in to comment.