# 声誉插件版本 0.2

**URL:** https://meta.discourse.org/t/reputation-plugin-version-0-2/54758
**Category:** Plugin
**Tags:** broken
**Created:** [2016年十二月25日 06:46 UTC](https://meta.discourse.org/t/reputation-plugin-version-0-2/54758 "2016-12-25T06:46:03Z")
**Posts on this page:** 1
**Showing post:** 11

<div class="post-metadata">

### Author: ![Mittineague](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mittineague/32/114259_2.png) [@Mittineague](https://meta.discourse.org/u/Mittineague)
#### Post date: [2016年十二月27日 19:31 UTC](https://meta.discourse.org/t/reputation-plugin-version-0-2/54758/11 "2016-12-27T19:31:59Z")

</div>

> [@Alavi1412](#):
>
> how can I handle the conflict in showing results?the texts are unreadable

I was hoping it might be a simple CSS fix like adding `style="clear: both"` or something.

![](https://global.discourse-cdn.com/meta/original/3X/4/3/439488bb2262833de93e845ad99c37a07e332851.png)

But after looking closely there seems to be an issue with the Core HTML eg.

```plaintext
<div class="names">
  <span>
    <h1 class=" username">
      <a href="/users/adminguy1" data-ember-action="" data-ember-action-1163="1163">
      AdminGuy1 
        <i class="fa fa-shield" aria-hidden="true"></i>
        <span class="sr-only">[en. is a moderator]</span>
      </a>
    </h1>
    <!---->
    <h2>good guy</h2>
    <span id="ember1164" class="ember-view">
      <div id="ember1166" class="user-card-post-names-outlet mitt-show-user-card-post-names ember-view">
      <!---->
      </div>
      <div id="ember1168" class="user-card-post-names-outlet Score ember-view">
      Your reputation: -1
      </div>
    </span>
  </span>
</div>

```

[https://github.com/discourse/discourse/blob/master/app/assets/javascripts/discourse/templates/components/user-card-contents.hbs#L15-L35](https://github.com/discourse/discourse/blob/master/app/assets/javascripts/discourse/templates/components/user-card-contents.hbs#L15-L35)

Having h tags inside of span tags is not valid HTML so it seems senseless to try and apply CSS fixes to it. Though perhaps changing the plugin template divs to spans might improve the display as div tags inside of span tags is not valid HTML either.

I know work is being done with how plugin-outlets will work so probably best to wait until that settles down and concentrate on other areas of your plugin for the time being.

> [@Important changes to Plugin Outlets for Ember 2.10](https://meta.discourse.org/t/important-changes-to-plugin-outlets-for-ember-2-10/54136):
>
> Shortly I will be merging a branch of Discourse into master that updates us to the latest stable version of Ember, which is 2.10. This is exciting because we’ve been behind Ember’s stable branch for a while and we’ve finally caught up! It also contains the Glimmer 2 template engine which is quite a bit faster so the application should be more responsive, and it also cuts down on our template file sizes so the app should be quicker to download. However, there is a downside, and that I wasn’t abl…

---

_[View the full topic](https://meta.discourse.org/t/reputation-plugin-version-0-2/54758)._
