Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,9 @@ <h1>
<li data-lang="en" id="nutchanon.org" data-owner="ninyawee" data-feed="https://nutchanon.org/rss.xml">
<a href="https://nutchanon.org">nutchanon.org</a>
</li>
<li data-lang="th" id="me.oreshi.com" data-owner="somboytiger">
<a href="https://me.oreshi.com">me.oreshi.com</a>
Comment on lines +475 to +476
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Use apex domain for id (and keep link text aligned).

id="me.oreshi.com" includes a subdomain, but this repo’s rule requires the domain without subdomain. Please change id to oreshi.com and update the <a> text to match the new id.

Suggested patch
-        <li data-lang="th" id="me.oreshi.com" data-owner="somboytiger">
-          <a href="https://me.oreshi.com">me.oreshi.com</a>
+        <li data-lang="th" id="oreshi.com" data-owner="somboytiger">
+          <a href="https://me.oreshi.com">oreshi.com</a>
         </li>

As per coding guidelines "Confirm id attribute matches the domain name (without subdomain if present) in the added <li> element" and "Ensure link text matches the id attribute in the added <li> element".

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<li data-lang="th" id="me.oreshi.com" data-owner="somboytiger">
<a href="https://me.oreshi.com">me.oreshi.com</a>
<li data-lang="th" id="oreshi.com" data-owner="somboytiger">
<a href="https://me.oreshi.com">oreshi.com</a>
</li>
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@index.html` around lines 475 - 476, Update the <li> element so the id
attribute uses the apex domain (change id="me.oreshi.com" to id="oreshi.com")
and make the anchor text match that id (change the <a> inner text from
"me.oreshi.com" to "oreshi.com"), leaving data-owner and href unchanged except
if you also need to keep the visible link text aligned with the id; verify the
data-lang="th" and data-owner="somboytiger" remain intact.

</li>
</ol>

<div id="feed"></div>
Expand Down