Results 7 issues of 7shi

To get Markdown, it is reliable to hook the text sent to the clipboard from the Copy button. I implemented this in a simple way. It requires `exportMarkdown` to be...

enhancement

`blockquote` disappears. Here is a simple implementation. ```javascript // Quotes if (tag === "BLOCKQUOTE") { for (const line of text.trim().split("\n")) { markdown += `> ${line}\n`; } } ```

Nodes other than `li` are enumerated, so `ol` is not numbered correctly. It can be worked around by counting the numbers. ```diff --- a/src/exportMarkdown.js +++ b/src/exportMarkdown.js @@ -43,12 +47,13 @@...

The `div` has been added to the chat body and `firstChild` cannot be retrieved properly. I can get the content by going down one level. ```diff --- a/src/exportMarkdown.js +++ b/src/exportMarkdown.js...

The class of the chat container seems to have changed and `chatContainer` is `null`. ```html ``` It may change again, so I cut it and it works. ```diff --- a/src/util/getContents.js...

### Problem Description While testing memory allocation using `hipMalloc()` in a HIP environment, I observed an unexpected behavior when attempting to allocate large chunks of memory. Key Observations: 1. Allocations...

This PR improves the reliability and user experience of the OllamaTranslator by addressing several issues I've encountered. **Current Issues:** 1. The current implementation sometimes gets stuck generating infinite responses, which...