Hiding time-stamp in Kara Plugin Interstitial Journal

@Mohammad

Hello

I am thinking of using your neat Kara plugin for journalling, but I would like to be able to hide the time-stamp and replace it with a bullet point.

I have looked at the code but but unfortunately my understanding is not sufficiently advanced to be able to do this.

Can this be done easily?

Cheers, Rob

This makes Interstitial journaling meaningless :wink:
BUT if you like hack the https://kookma.github.io/TW-Kara/#%24%3A%2Fplugins%2Fkookma%2Fkara%2Fmacros%2Fadd-items-interstitial

Change

\define kara-add-item-action()
<$let
note-time=<<now format:'$(timeFormat)$'>>

to

\define kara-add-item-action()
<$let
note-time=""

Thankyou @Mohammad

I realise the request might seem a bit odd !

My intention was to record the time but to hide it the output and have a bullet point instead!

Cheers, Rob

@Mohammad

I assume the piece of code that needs hacking is somewhere in $:/plugins/kookma/kara/macros/disp-items-interstitial

\define kara-disp-items()
<div class="interstitial" style="display:block;">
<$list filter="[<displayMode>regexp[reverse|sort]]" emptyMessage='<$transclude tiddler=<<dblock>> field=title mode=block/>' variable=ignore>
	<$list filter="[<displayMode>match[reverse]]" variable=ignore>
		<$transclude tiddler={{{ [<dblock>splitregexp[\n]!is[blank]splitregexp[\s*\*\s*]!sort[]addprefix[* ]] :and[join<lbr>] }}} field=title mode=block/>
	</$list>
	<$list filter="[<displayMode>match[sort]]" variable=ignore>
		<$transclude tiddler={{{ [<dblock>splitregexp[\n]!is[blank]splitregexp[\s*\*\s*]sort[]addprefix[* ]] :and[join<lbr>] }}} field=title mode=block/>
	</$list>
</$list>
</div>
\end

Unfortunately I cannot follow the syntax to be able to give it a go!!

Cheers, Rob