## Dynamic Content Sometimes you may find useful to generate content dynamically. Maybe you're going to read some configuration file, or maybe you just want to define some helpers. Kitabu has support for ERb files; all you need to do is naming your text file as `.md.erb`. On the previous chapter, we listed all supported Rouge lexers. To do that, I created a helper that looks like this: ```ruby <%= File.read("./config/helper.rb") %> ``` To use it, I just needed to add `<%%= lexers_list %>` to my text file. This allows you to create anything you need! Kitabu comes with some built-in helpers, such as `note`. With this helper, you can create a note that generates a HTML structure, so you can easily style it. The syntax for using the `note` helper is `note(type, &block)`. ```erb <%% note do %> Some text that will be parsed as Markdown. <%% end %> ``` By default, this will generate a `