auto_discovery_link_tag alternative for middleman

so when I have page in rails, I can use auto_discovery_link_tag so services like feedly and so can discover my rss feeds easily.

is there something like this in middleman? I wasn’t able to find it, so I just added <link href="http://hovancik.net/blog/feed.xml" rel="alternate" title="RSS" type="application/rss+xml" />

`

Generally Middleman uses Padrino helpers, you can check theirs docs for this.

so I can use all of their helpers, or only the one mentioned on middleman web?

The docs http://middlemanapp.com/basics/helpers/ say:

Most of the basic methods should be very familiar to anyone who has used rails view helpers. These helpers are all built on the Padrino Framework, view the full documentation here. So it seems all relevant should work. Middleman documentation is unfortunately somewhat limited in this regard.