I was trying to add context highlighting (using context plug in) and inline editing (using rider plug in) for backlinks as seen in this discussion. But I couldn’t make it to work together.
So I thought of using Node explorer of Shiraz which already has inline editing option. Can the context highlighting option also be added to Node explorer. Also how to add a search box at the top of the node explorer.
I was using this Node explorer from the Shiraz site
\define stateTid() node-explorer/$(currentTiddler)$
\define mainFilter() [all[current]!is[system]backlinks[]] [all[current]!is[system]links[]] [all[current]!is[system]tagging[]]
\define dispExplorer()
<$macrocall $name=table-dynamic filter=<<mainFilter>> fields="tbl-expand title tbl-linktype tags created" class="w-100" editButton=no
stateTiddler=<<stateTid>> />
\end
<$list filter="[all[current]get[node-explorer]!match[hide]] [all[current]!has[node-explorer]]" variable=null>
<$list filter="[subfilter<mainFilter>] +[count[]compare:number:gteq[1]]" variable=null>
<$macrocall
$name=details
label="Node Explorer"
status=""
labelClass="alert alert-secondary py-1 my-2"
srcClass ="alert border-secondary py-0"
src=<<dispExplorer>>
/>
</$list>
</$list>