If I paste in a code snippet, without using backticks, like:
public class Main { public static void main(String[] args) {
System.out.println("Hello World");
}
}
It seems to be trying to do the right thing, but it discards most of the content and creates a code fence with highlighting containing just the word public:
public
If I type ``` then hit enter, then paste the same Java into it, I get the following (which is correct):
public class Main {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
We've notified our team. Once we have any updates, we will let you know.
Golda, Feb 14, 2025
It doesn't convert it to plain text, though, it converts it to a code fence containing the first word. Converting it to plain text would be better.
Jason, Feb 14, 2025
Hi,
Could you please share a screen recording for our team check?
Golda, Feb 14, 2025
public
Jason, Feb 14, 2025
Jason, Feb 14, 2025
Hi,
This issue has been fixed in the latest update (Quire ver. 1670). Please refresh your workspace and try again. Thank you.
Golda, Feb 14, 2025
Hi,
When pasting a code snippet, you need to type backticks + Enter first to enter a code block, then paste the code. Otherwise, it will be converted to plain text. Thank you!
Golda, Feb 14, 2025