I'm using kramdown parser to convert markdown to html. I want to use lazy load for images without modifying original markdown syntax. I can achieve this by editing link.rb file in kramdown gems.
But I don't want to follow this way. Because if anyone updating kramdown I'll lose these edits. Is there anyother way to do this without modifying original image syntax?
Original Image Syntax: 
Current Output (without above edit): <img src="some image link" alt=""/>
Expected Output: <img data-src="some image link" alt=""/>