i am currently using pre tag , in pre tag the text format is pretty raw. what i want to do is put something on end of each sentence in pre tag like the example below, how can i acheive this?
sample pre tag
<pre>
hello
good world
my name is
dan
</pre>
i want to add $ symbol at the end of each sentence like this
<pre>
hello $
good world $
my name is $
dan $
</pre>
how can i achieve something like this with the help of javascript and react js