Main public logs
Appearance
This is a combined display of all logs except the patrol, review, tag and thanks logs:
- Who performed the action – enter their name without prefix under "Performer".
- The page or user affected by an action – enter the page or user name (prefixed with "User:") under "Target".
- 14:30, 22 February 2024 Sophivorus talk contribs created page Module:WikitextParser/testcases (←Created page with 'local P = require( 'Module:WikitextParser' ) local ScribuntoUnit = require('Module:ScribuntoUnit') local Suite = ScribuntoUnit:new() function Suite:testTags() self:assertDeepEquals( {}, P.getTags( 'a' ) ) -- no tags self:assertDeepEquals( {'<div>a'}, P.getTags( '<div>a' ) ) -- unclosed tag self:assertDeepEquals( {'<div></div>'}, P.getTags( '<div></div>' ) ) -- empty tag self:assertDeepEquals( {'<div></div>'}, P.getTags( 'a<div></div>b' ) ) self:assert...')