Add the following to the plugin.php
of your plugin (but use your own filter function):
public function registerMarkupTags() {
return [
'functions' => [
...
],
'filters' => [
'uppercase' => [ $this, 'makeTextAllCaps' ]
]
];
}
public function makeTextAllCaps( $text ) {
return strtoupper( $text );
}
<div class="col-xs-12">
<h1 class="entry-title post-header">{{title|uppercase}}</h1>
<div class="entry-content">
<!-- page -->{% page %}<!-- end-of-page -->
</div>
</div>