I have code that generates fixes on the canvas. path objects look something like this:
<path class="link" d="M450,215.L265,236L225,236" style="stroke-width: 1;"></path>
and in the form (letters a, b, c are intended only to explain the problem):

My problem is that I want to draw some arrow (marker) in the middle of the line, between "a" and "b", but when I create a marker and use the marker-mid attribute, it is generated at the b-point.
I tried to make some point between a and b, but then the mid-marker made arrows both there and both on b.
from the WEB API documentation:
The mid-marker defines the arrow or poly-marker, which should be drawn at each vertex other than the first and last vertices of this element or basic shape.
How to disable the marker at point b? Or how can I do something like an arrow between ab? Thank!