Skip to content

Commit 75fce04

Browse files
committed
remove astContext from JSON
1 parent b3a65fd commit 75fce04

File tree

1 file changed

+1
-1
lines changed
  • crates/quarto-markdown-pandoc/tools/pandoc-diff/src

1 file changed

+1
-1
lines changed

crates/quarto-markdown-pandoc/tools/pandoc-diff/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function App() {
2727
if (typeof obj === 'object') {
2828
const newObj: any = {};
2929
for (const key in obj) {
30-
if (key !== 'l') {
30+
if (key !== 'l' && key !== 'astContext') {
3131
newObj[key] = removeLocationInfo(obj[key]);
3232
}
3333
}

0 commit comments

Comments
 (0)