()
| 766 | |
| 767 | const meta = document.createElement('div'); |
| 768 | meta.style.cssText = 'display:flex;gap:6px;margin-top:3px;font-size:11px;align-items:center;flex-wrap:wrap;'; |
| 769 | |
| 770 | // 作者 |
| 771 | const authorSpan = document.createElement('span'); |
| 772 | authorSpan.textContent = post.author; |
| 773 | authorSpan.style.cssText = 'color:#5a6d80;background:#eef2f7;padding:2px 8px;border-radius:10px;font-weight:500;'; |
| 774 | |
| 775 | // 回复数 |
| 776 | const commentSpan = document.createElement('span'); |
no test coverage detected