Skip to content
Snippets Groups Projects
Commit 045abbd6 authored by Coder12a's avatar Coder12a Committed by paramat
Browse files

Books: Convert \r to \n

Some files or editors may use \r instand of \n like notepad++. If you copy
text written in notepad++ and pasted into the book. The book will only have
one page.
parent 454e0da5
Branches
No related tags found
No related merge requests found
......@@ -112,6 +112,7 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
end
data.description = "\""..short_title.."\" by "..data.owner
data.text = fields.text:sub(1, max_text_size)
data.text = data.text:gsub("\r\n", "\n"):gsub("\r", "\n")
data.page = 1
data.page_max = math.ceil((#data.text:gsub("[^\n]", "") + 1) / lpp)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment