Tim Nordell

Results 40 comments of Tim Nordell

Hi @RJMSTM - Simple code inspection shows if it's an issue with C++20 still or not, and _technically_ it's still an issue against C++20. However, after I made my additional...

I will note that this is introduced in `master` and not present in `1.0.2`. It's possible this is related to #796.

Bisected to e51fc1fcf398de5c06a519b2281189051baf0e85.

From the LaTeX builder: ``` if node.get('refid'): prev_node = get_prev_node(node) ... add_target(node['refid']) for id in node['ids']: add_target(id) ``` It looks like both the attributes `ids` and `refid` are considered for...

@danwos Sure thing! I just wasn't sure when/where those ids were needed and didn't want to break things, so I figured it was better for discussion here first. I'll create...

I just checked the `html` output, and there's a nesting like this for a need: ``` ``` With this patch, the `id=` is gone from the `` element only. The...

It breaks the HTML anchors actually removing that `id`. I wonder if it can be moved to the `div` instead (checking).

Looks like if I add it into the container, it generates a span, so it looks like: ``` ``` which works for both the HTML case, and the LaTeX case....

From the code, the references for `SNCB`: ``` layout.py: container_id = "SNCB-" + str(uuid.uuid4())[:8] libs/html/sphinx_needs_collapse.js: var need_table_id = table.closest("div[id^=SNCB-]").attr("id"); libs/html/sphinx_needs_collapse.js: var need_table_id = table.closest("div[id^=SNCB-]").attr("id"); ``` @danwos @iSOLveIT What are the...

I pushed a couple of fixup commits (can be squashed into the main commit) showing those transforms (along with the fix for the ID reference).