fiwswe

Results 117 comments of fiwswe

I don't use AuthAD plugin anywhere, but that said: [ldap_start_tls](https://www.php.net/manual/en/function.ldap-start-tls) is not really documented. But it returns a `bool` which I would expect to signal, whether STARTTLS was successful or...

I don't know exactly why this happens, but in your example the line above the heading contains 3 spaces. If you delete at least 2 of the 3 spaces in...

The alternative would be to document that tables need to be terminated by empty lines. The [current documentation](https://www.dokuwiki.org/wiki:syntax#tables) makes no mention of this AFAICT. OTOH so far I don't see...

Another odd related issue: ``` | 1 | | 2 | ``` (Line with two spaces between the tables.) Renders as a single table with 3 columns. Is this intentional?

@tormec Not sure I see what you are getting at? We are talking about lines that start with a certain amount of white space, not blank lines.

Well yes, sure. A blank line will terminate the table just fine. And that is certainly a workaround for the issues. But that does not explain the weird rendering when...

No, they render as an extra column, see [above](https://github.com/dokuwiki/dokuwiki/issues/4051#issuecomment-1708229410). But in the case where they are followed by a non-table element, they don't do that. Maybe @splitbrain can explain what...

Here is another related bug without the complication of the table: ``` //www.example.com// This is rendered but the newline is ignored! ``` This is rendered in one line, ignoring the...

Another mitigation: ``` // www.example.com // This is rendered as a new paragraph. ```

I suspect some problem in the regex patterns in https://github.com/dokuwiki/dokuwiki/blob/f32fa0963b0fda8f645a5b5011758b51b55c653e/inc/Parsing/ParserMode/Externallink.php#L11-L30 Do they consume (part of the) italic markup? But at first glance I don't see it yet. Or could it...