Hans Ginzel
Hans Ginzel
Generate proper links to local files and when the [file: URI](https://en.wikipedia.org/wiki/File_URI_scheme) is used, please. E.g. - `[file](C:\Temp\file.txt)` should produce `href="file:///C:/Temp/file.txt"` link. - `[file](C:/Temp/file.txt)` should produce `href="file:///C:/Temp/file.txt"` link. - `[file](file:///C:/Temp/file.txt)` should...
Thank you very much for jdbc_fdw. Can you please add units to paragraphs like > querytimeout : The time after which a query will be terminated automatically. > This can...
Input: `ab` Output: literal `ab` Expected output: element `` in the html output which produces line break See [BabelMark](https://johnmacfarlane.net/babelmark2/?text=ab), [CommonMark](https://spec.commonmark.org/0.29/#raw-html).
Hello, thank you for Graphviz plugin. Please add to ReadMe examples, how to create links (the URL attribute) to Redmine - wiki page, - issue. Regards, Hans
It seems that the domain omnidb.org may be for sale by its owner. https://sedo.com/search/details/?partnerid=14460&language=e&domain=omnidb.org&origin=parking&utm_medium=Parking&utm_campaign=template&utm_source=3097 How to preserve the original content?
q.py:535: DeprecationWarning: The default datetime adapter is deprecated as of Python 3.12; see the sqlite3 documentation for suggested replacement recipes `r = self.cursor.execute(q,params)`
q.py:1624: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC). now = datetime.datetime.utcnow().isoformat() Python 3,12
In the [documentation](http://vimdoc.sourceforge.net/htmldoc/insert.html#i_CTRL-K) there stands "*When {char1} is a special key, the code for that key is inserted in form.*" I have tried `Ctrl-K`, got `?`, epected ``. After some...
uses → used
This simple code ```python from fsspec import filesystem from azure.identity import DefaultAzureCredential protocol = 'az' account_name = 'blob_account_name' container_name = 'storage_container' fs = filesystem(protocol, account_name=account_name, credential=DefaultAzureCredential()) blobs = fs.ls(container_name) for...