Skip to content

Instantly share code, notes, and snippets.

@LeoShi
Forked from mimosz/helper.rb
Created January 28, 2012 03:14
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 LeoShi/1692313 to your computer and use it in GitHub Desktop.
Save LeoShi/1692313 to your computer and use it in GitHub Desktop.
帮着优化优化呗~~
def show_props(str)
props = str.split(';') # 切割
if props.is_a?(Array)
str = "<dl class='props'>"
props.each do |property|
prop_arr = property.split(':') # 切割
if prop_arr.is_a?(Array) && prop_arr.count == 4
str += "<dt title='#{prop_arr[0]}'>#{prop_arr[2]}</dt><dd title='#{prop_arr[1]}'>#{prop_arr[3]}</dd>"
else
str += "<dt class='warning'>提示:</dt><dd>无属性</dd>"
end
end
str += "</dl>"
end
str
end
@LeoShi
Copy link
Author

LeoShi commented Jan 28, 2012

def show_props(str)
    props = str.split(';') # 切割
    str = build_dl props if props.is_a?(Array)
    str
end

 def build_dl props
    str = "<dl class='props'>"
    props.each do |property|
     str += build_dt property
    end
    str += "</dl>"
    str
 end

 def build_dt property
    prop_arr = property.split(':') # 切割
    if prop_arr.is_a?(Array) && prop_arr.count == 4
     str += "<dt title='#{prop_arr[0]}'>#{prop_arr[2]}</dt><dd title='#{prop_arr[1]}'>#{prop_arr[3]}</dd>"
    else
     str += "<dt class='warning'>提示:</dt><dd>无属性</dd>"
    end
    str
 end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment