diff --git a/caravel/views.py b/caravel/views.py index ba9a386310..166b63c613 100755 --- a/caravel/views.py +++ b/caravel/views.py @@ -503,10 +503,12 @@ class DatabaseView(CaravelModelView, DeleteMixin): # noqa edit_template = "caravel/models/database/edit.html" base_order = ('changed_on', 'desc') description_columns = { - 'sqlalchemy_uri': ( - "Refer to the SqlAlchemy docs for more information on how " - "to structure your URI here: " - "http://docs.sqlalchemy.org/en/rel_1_0/core/engines.html"), + 'sqlalchemy_uri': utils.markdown( + "Refer to the " + "[SqlAlchemy docs]" + "(http://docs.sqlalchemy.org/en/rel_1_0/core/engines.html#" + "database-urls) " + "for more information on how to structure your URI.", True), 'expose_in_sqllab': _("Expose this DB in SQL Lab"), 'allow_run_sync': _( "Allow users to run synchronous queries, this is the default "