Hexo provides a [collection of helper functions](https://hexo.io/docs/helpers.html) to be used by the theme templates. For example: ```ejs <%- css('style.css') %> ``` Switching to using these functions where appropriate could make the source code cleaner and more easy to maintain.
Hexo provides a collection of helper functions to be used by the theme templates. For example:
<%- css('style.css') %>Switching to using these functions where appropriate could make the source code cleaner and more easy to maintain.