Skip to content

Instantly share code, notes, and snippets.

@katoy
Created April 7, 2015 22:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save katoy/09f65164cad59d447dfb to your computer and use it in GitHub Desktop.
Save katoy/09f65164cad59d447dfb to your computer and use it in GitHub Desktop.
plantuml の ditaa モードの日本語対応版 (in progress ...)
# coding: utf-8
File.open(ARGV[0], "r:utf-8" ) do |f|
while line = f.gets
line2 = ''
line.chars do |c|
line2 += c
code = c.ord
line2 += ' ' unless 0 <= code && code <= 255
end
puts line2
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment