Content deleted Content added
Allow omitted data for charts (i.e. y1=1,2,3,4,5,6; y2=, , , , 10, 20). Labels for line charts with a string (ordinal) scale are set at point ___location like for quantitative scales. |
added encodeTitleForPath |
||
Line 838:
function p.chartWrapper(frame)
return p.chart(frame:getParent())
end
-- Given an HTML-encoded title, e.g. one produced with {{ARTICLEPAGENAME}},
-- convert it into a properly URL path-encoded string
function p.encodeTitleForPath(title)
return mw.uri.encode(mw.text.decode(title), 'PATH')
end
|