This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'base64' | |
# converts attached PNGs into base64 strings | |
# Eg | |
# <img src="my.png" /> to <img src="data:image/png;base64,..." /> | |
class To64Html | |
def initialize(path) |