File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "id" : " embed-metadata" ,
33 "name" : " Embed Metadata" ,
4- "version" : " 0.8.0 " ,
4+ "version" : " 0.8.1 " ,
55 "minAppVersion" : " 1.0.0" ,
66 "description" : " Render frontmatter metadata (Properties) inside your notes with a lightweight inline syntax." ,
77 "author" : " Schemen" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " embed-metadata" ,
3- "version" : " 0.8.0 " ,
3+ "version" : " 0.8.1 " ,
44 "description" : " Render frontmatter metadata inside Obsidian notes with lightweight inline syntax." ,
55 "private" : true ,
66 "main" : " main.js" ,
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ function reconstructSource(node: ChildNode): string {
238238 if ( node . nodeType === Node . TEXT_NODE ) {
239239 return node . nodeValue ?? "" ;
240240 }
241- if ( node instanceof HTMLElement ) {
241+ if ( node . instanceOf ( HTMLElement ) ) {
242242 if ( node . matches ( "a.internal-link" ) && node . dataset . href ) {
243243 // `data-href` keeps the link target including any `#subpath`.
244244 return `[[${ node . dataset . href } ]]` ;
Original file line number Diff line number Diff line change 1111 "0.6.0" : " 1.0.0" ,
1212 "0.7.0" : " 1.0.0" ,
1313 "0.7.1" : " 1.0.0" ,
14- "0.8.0" : " 1.0.0"
14+ "0.8.0" : " 1.0.0" ,
15+ "0.8.1" : " 1.0.0"
1516}
You can’t perform that action at this time.
0 commit comments