Is it just me ?

Daestrum

Expert
Licensed User
Longtime User
When I copy paste code into the forum using Edge it reverses all the lines, ie the first line is last and last is first. And it eats all the CR/LF 's so I get one line.
An example - posted in Edge
B4X:
End Sub StartMessageLoop svr.Start svr.Port = 55555 svr.AddWebSocket("/ws","start") svr.Initialize("svr")Sub AppStart (Args() As String)

the same copy buffer posted from chrome
B4X:
Sub AppStart (Args() As String)
    svr.Initialize("svr")
    svr.AddWebSocket("/ws","start")
    svr.Port = 55555
    svr.Start
    StartMessageLoop
End Sub

Weird or what lol.
 
Last edited:

Daestrum

Expert
Licensed User
Longtime User
I thought that too, so I purposely highlighted from top to bottom, Still the same lol.

Just found if I use bbcode option it posts correctly.
 
Last edited:

Cableguy

Expert
Licensed User
Longtime User
I've seen this too. But it only hapens if I past directly to the post, if I use the insert code dialogue, all is OK.
 

Beja

Expert
Licensed User
Longtime User
Paste it in notepad first then cooy it from notepad and paste it in your code.
 
Last edited:
Top