I am looking for a simple solution to change index entries so that I get honey • 24 instead of honey, 24. I looked through a couple of articles on influencing the index style (idxlayout customized delimiters, Is there an easy way to hide comma (,) from the end of the indexed words?) but it seems that I am not advanced enough to make use of those ideas.
EDIT: I am looking explicitly for a xindy solution, i.e. how to make or change a (which?) *.xdy file.
Here's an MWE with all the preamble stuff (I left more or less everything important):
\documentclass[10pt,twoside,titlepage,headsepline,headings=small,BCOR=17mm]{scrbook}
\usepackage{scrlayer-scrpage} % scrpage2
\usepackage{cmap}
\usepackage{ulem}
\usepackage[utf8]{inputenc}
\usepackage[vietnamese=nohyphenation]{hyphsubst}
\usepackage[vietnamese,polish]{babel}
\usepackage[T5,T1]{fontenc}
\usepackage{longtable}
\usepackage{lmodern}
\usepackage{makeidx}
\usepackage[columns=2,itemlayout=abshang,initsep=1.8em plus 0.2em minus 0.2em]{idxlayout}
\usepackage{mathtools}
\usepackage{graphicx}
\usepackage{etoolbox}
\newcommand{\rawindex}[1]{\expandafter\index\expandafter{\detokenize{#1}}}
\makeindex
\begin{document}
\mainmatter
Some text \rawindex{text} is written \rawindex{text!more text} here. What \rawindex{hello} do you think of me?
\backmatter
\cleardoublepage
\addcontentsline{toc}{chapter}{INDEKS}
\ihead[]{}
\sffamily
\setindexprenote{Hello!}
\printindex
\end{document}
Does anyone have an idea of a simple solution for the needed change?