You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd trying to avoid de note path not found meta bind error to show properties from other notes in a makdown table. Even for notes that are not yet created. For this the inline view controls is perfect with custom mathjs function, but I need to show a properties with some html tags and an iconize icon. Example: <span class=h1>:LiActivity:</span>
This solution add an extra space to the note, corresponding with the hidden view. ¿Its posible to integrate in the function de render operation for simplify and avoid de memory var and the second View control?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'd trying to avoid de note path not found meta bind error to show properties from other notes in a makdown table. Even for notes that are not yet created. For this the inline view controls is perfect with custom mathjs function, but I need to show a properties with some html tags and an iconize icon. Example:
<span class=h1>:LiActivity:</span>
This is the js-engine code till now:
`
const mb = engine.getPlugin('obsidian-meta-bind-plugin').api;
mb.mathJSImport({
// definition of the clamp function
clamp: (val, min, max) => {
console.log(val + "---");
return Math.min(Math.max(min, val), max);
},
});
`
This is the use of safeProp in a View control:
VIEW[safeProp("2025-08-01","Cicling")]
And if I need a markdown result, this is the used sintax:
VIEW[safeProp("2025-08-01","Cicling")][math(hidden):memory^a]
VIEW[{memory^a}][text(renderMarkdown)]
This solution add an extra space to the note, corresponding with the hidden view. ¿Its posible to integrate in the function de render operation for simplify and avoid de memory var and the second View control?
Beta Was this translation helpful? Give feedback.
All reactions