rails_admin
https://github.com/railsadminteam/rails_admin
Ruby
RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data
MarkupHelper#link_to_html
It solves a problem occurring with nested links (i.e. "<a>outer text <a>gfm ref</a> more outer text</a>"). This will not be interpreted as intended. Browsers will parse something like "<a>outer text </a><a>gfm ref</a> more outer text" (notice the last part is not linked any more). link_to_html corrects that. It wraps all parts to explicitly produce the correct linking behavior (i.e. "<a>outer text </a><a>gfm ref</a><a> more outer text</a>").
Edit
git clone [email protected]:railsadminteam/rails_admin.git
cd rails_admin
open
Contribute
# Make a new branchgit checkout -b -your-name--update-docs-MarkupHelper-link_to_html-for-pr
# Commit to gitgit add git commit -m "better docs for MarkupHelper#link_to_html"
# Open pull requestgem install hub # on a mac you can `brew install hub`
hub fork
git push <your name> -your-name--update-docs-MarkupHelper-link_to_html-for-pr
hub pull-request
# Celebrate!