14
15
16
17
18
19
20
21
22
23
24
25
26
|
# File 'lib/Helper.rb', line 14
def self.createWatermark(postURL)
text = "\r\n\r\n\r\n"
text += "+-----------------------------------------------------------------------------------+"
text += "\r\n"
text += "\r\n"
text += "| **[View original post on Medium](#{postURL}) - Converted by [ZhgChgLi](https://blog.zhgchg.li)/[ZMediumToMarkdown](https://github.com/ZhgChgLi/ZMediumToMarkdown)** |"
text += "\r\n"
text += "\r\n"
text += "+-----------------------------------------------------------------------------------+"
text += "\r\n"
text
end
|