Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Can't copy batch file code from website.

  • 11 답장
  • 1 이 문제를 만남
  • 1 보기
  • 최종 답변자: Darkje

more options

If I try to copy a batch file from a [code] block on the 'steam guides' website, the resulting paste is missing returns.

https://support.cdn.mozilla.net/media/uploads/images/2017-12-05-08-08-00-cf81bc.png

If I try to copy a batch file from a [code] block on the 'steam guides' website, the resulting paste is missing returns. https://support.cdn.mozilla.net/media/uploads/images/2017-12-05-08-08-00-cf81bc.png
첨부된 스크린샷

선택된 해결법

Try to use View Selection Source in the right-click context menu of the selected text. You can also use the Inspector to add <pre>TEXT</pre> tags around the text (right-click: Edit as HTML).

문맥에 따라 이 답변을 읽어주세요 👍 1

모든 댓글 (11)

more options

Hello, if you are copying the raw paste data, you will have to add the returns yourself, and it should work as expected. This goes for all web browsers -- not just Firefox.

more options

No, if I try microsoft's or google's competition browsers i do get the expected result.

You can try for yourself here: http://steamcommunity.com/sharedfiles/filedetails/?id=1173862256

more options

Strange, try copying and pasting again but paste the raw data into a pastebin and copy from there.

more options

Nope, doesn't work either, if I look with the 'inspector' function it's already stripped of returns there, so if I paste into pastebin it's the same soup as it is in a notepad file. I don't get why it stopped working since 57.0, it used to work before.

more options

File a bug at https://bugzilla.mozilla.org -- Once there you will need to create an account. When registered, please see the documentation for bug filing to help get you started.

more options

Okay, I filed a bug .

thanks

more options

If my response helped you, mark as solution.

more options

선택된 해결법

Try to use View Selection Source in the right-click context menu of the selected text. You can also use the Inspector to add <pre>TEXT</pre> tags around the text (right-click: Edit as HTML).

more options

'View selection source' worked! I could copy it normally then. Same when edit as html is used in inspector.

I marked your answer as a solution, but I still don't understand why I should be this complicated. It used to work with a simple select/copy/paste action, as it does in any other browser I tested except the firefox 57.0(.1) browsers.

more options

It has to do with what Firefox places on the clipboard.

If I use the text/html flavor on the clipboard then it works and it preserves the linefeed characters.

@echo off
cls
rem *** main script starts, set window title ***
rem --------------------------------------------

If I use text/unicode flavor on the clipboard then it doesn't work.

@echo off cls rem *** main script starts, set window title *** rem --------------------------------------------

Text/unicode seems to place whitespace on the clipboard formatted as HTML and converts linefeed to spaces (a <br> would be converted to a linefeed).

more options

Yeah, I've found that out too now. I still don't get why firefox 57 would handle this different from other browsers and i's own predecessors.

If this is how it should be, then I kind of expect an option where I right-click to copy, like 'copy as html' and 'copy as unicode'. Like it is now, I feel it's over complicated to get the desired result. Maybe not for me but for an average user it is.

Anyway thanks to all trying and explaining what's going on!