schneidersoft
schneidersoft
Ok. So I would like to use jquery in my documents (in js code in a script tag in the document) but: 1. extra js is loaded after the document...
Hiding things based on platform sounds like a template specific thing. You would not need to do this from within the document but from the template itself. i.e. Create a...
I have found a solution for my original problem that does not require changes to mkdocs. In your documents, since $ is not available you can use another method to...
The last line just says make an empty unicode string and add the contents of self.fields[field] to it. We should probably be explicitly specifying an encoding too, so using .encode('utf-8')...
I have noticed that libreoffice allows you to select 'import quoted fields as text' This sounds like what we need. Libre office exports spreadsheets as tsv like this: 1 "Wuerth"...
turns out you can use: writer = csv.writer(f, delimiter=delimiter, lineterminator="\n", quoting=csv.QUOTE_NONNUMERIC) To force quotes. problem is that it quotes everything even the quantity field. I think this is because getRow...
I also have this situation. I use nginx to handle ssh stuff and reverse proxy gotify.
Simple solution: Don't allow ridiculously large input? If you are reading data from a socket and the client is giving you 2+Gb of data... that connection needs to close(); The...
This is a generic problem with jsmn strict mode being incomplete... `{"key":::::"value"}` is also strict according to jsmn :(
I've been working on a jrpc server that needs exactly this kind of thing. One way to solve the problem is to keep track of depth. { and [ increase...