- SideBarEnhancements 增強側欄功能
- gitgutter 顯示 ++ — 的 git diff
- Git Plugin
/etc/apache2/conf.d/other-vhosts-access-log
#CustomLog /var/log/apache2/other_vhosts_access.log vhost_combined
#CustomLog ${APACHE_LOG_DIR}/access.log combined
require 'htmlentities'
coder = HTMLEntities.new
string = "élan"
coder.decode(string) # => "élan"
require 'htmlentities'
coder = HTMLEntities.new
string = "<élan>"
coder.encode(string) # => "<élan>"
coder.encode(string, :basic) # => "<élan>"