Given this Qute template base:
<html>
<head>
<meta charset="UTF-8">
<title>{#insert title}Default Title{/}</title>
</head>
<body>
{#insert}No body!{/}
</body>
</html>
and detail
{#include base}
{#title}My Title{/title}
<div>
My body.
</div>
{/include}
It would be nice to select title ({#insert titl|e}) from base and call the call hierarchy to show in a treeview which #title (in this sample detail) is calling insert title:
* {#insert title}: base
* #title : base
//cc @ia3andy
Given this Qute template
base:and
detailIt would be nice to select
title({#insert titl|e}) from base and call the call hierarchy to show in a treeview which #title (in this sample detail) is calling insert title://cc @ia3andy