User talk:BrandonXLF
Welcome to my talk page. Please adhere to the talk page guidelines and particularly the following:
|
Special characters in portlets links?
[edit]Maybe I'm just missing something, but when I try to create a link to say "Special:Contributions/$PAGENAME$" and then click on it, it gets URL encoded and doesn't work as it will turn the / into a "Special:Contributions/User%253ARaladic" Is there any way to work around that? Raladic (talk) 17:40, 1 December 2024 (UTC)
- @Raladic Looks like the result of "$PAGENAME$" was being URL encoded twice. I've updated the script so it is not URL encoded when used as part of a page title. Hope that helps! – BrandonXLF (talk) 08:50, 2 December 2024 (UTC)
- Awesome, thanks :) Raladic (talk) 16:30, 2 December 2024 (UTC)
Nomination for deletion of Template:Userbox-r/create
[edit]Template:Userbox-r/create has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. Gonnym (talk) 07:30, 12 December 2024 (UTC)
The Signpost: 12 December 2024
[edit]- News and notes: Arbitrator election concludes
- Arbitration report: Palestine-Israel articles 5
- Disinformation report: Sex, power, and money revisited
- Op-ed: On the backrooms by Tamzin
- In the media: Like the BBC, often useful but not impartial
- Traffic report: Something Wicked for almost everybody
Module:Sandbox/BrandonXLF/Module:Map params/testcases
[edit]Jonesey95 edited Module:Sandbox/BrandonXLF/Module:Map params/testcases, changing
out = out .. "<p><div>'''Live'''</div>" .. (res ~= '' and res or "''No output''") .. '</p>\n'
to
out = out .. "<div>'''Live'''</div>" .. (res ~= '' and res or "''No output''") .. '\n'
Then you changed it to
out = out .. "<p>'''Live'''<br>" .. (res ~= '' and res or "''No output''") .. '</p>\n'
but unfortunately, from ExpandTemplates, the output of this line is
<p>'''Live'''<br>
which has a missing end tag for <p>
, and I don't speak module markup, so I can't fix it. —Anomalocaris (talk) 19:46, 20 December 2024 (UTC)
- I fixed the missing /p tag for the basic example, but the "Whitespace separator" example is still broken, because it has
<p>...</p>
tags wrapping block content with the p and /p tags at different indent levels.<p>...</p>
tags can't be used in this way. This is probably why I removed the p tags in the first place; using div tags instead of p tags should resolve this problem. – Jonesey95 (talk) 20:48, 20 December 2024 (UTC)