I am recently learn the source code of the telescope, which build on Meteor. I want to modify the interface of the post page. But when I open the file of
/packages/telescope-posts/lib/client/templates/post_body.html
, I can't find the definition of {{{htmlbody}}}
. Who can tell me where to find this variables. I just want to modify the interface of the post, and I can't find which file or template realized that.
The post_body.html
is follow:
<template name="post_body">
<div class="post-body markdown" aria-live="polite">{{{htmlBody}}}</div>
</template>