# How to implement "raw-plugin-outlet"

**URL:** https://meta.discourse.org/t/how-to-implement-raw-plugin-outlet/178385
**Category:** Development
**Created:** [February 4, 2021, 9:58am UTC](https://meta.discourse.org/t/how-to-implement-raw-plugin-outlet/178385 "2021-02-04T09:58:14Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Bich\_Phan](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bich_phan/32/208364_2.png) [@Bich\_Phan](https://meta.discourse.org/u/Bich_Phan)
#### Post date: [February 4, 2021, 9:58am UTC](https://meta.discourse.org/t/how-to-implement-raw-plugin-outlet/178385/1 "2021-02-04T09:58:14Z")

</div>

Hello,  
i see `{{~raw-plugin-outlet name="topic-list-before-status"}}` in topic-list-item.hbr file  
i want to implement it in my plugin but can not  
could anybody help me ?

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [October 8, 2021, 9:19pm UTC](https://meta.discourse.org/t/how-to-implement-raw-plugin-outlet/178385/2 "2021-10-08T21:19:16Z")

</div>

Welcome! sorry this wasn’t answered earlier, but hopefully this will help someone…

To use a raw plugin outlet you need to create an `hbr` file, like this:  
`/connectors/topic-list-before-status/my-content.hbr`

If you’re adding static HTML you can add it within that file.

If you want to some custom logic, you can use this structure:

`/raw-views/my-object.js`

`/templates/my-object.hbr`

and within your `/connectors/topic-list-before-status/my-content.hbr` file you’d add:

`{{my-object}}`
