Module:Preview warning
Appearance
मॉड्यूल बिबरनलेख[देखीं] [संपादन करीं] [इतिहास देखीं] [रिफ्रेश करीं]
{{Module rating}}
Usage
[संपादन करीं]Put this code in your template. The message will only show in Show preview (you can try with this page):
{{#invoke:Preview warning|main|Message text}}
→
परिचय खातिर ऊपर दिहल गइल बिबरनलेख के Module:Preview warning/doc से ट्रांसक्लूड क के इहाँ देखावल जा रहल बाटे। (संपादन करीं | इतिहास देखीं) संपादक लोग एह मॉड्यूल के अभ्यासपन्ना (सैंडबाक्स) (बनाईं | मिरर करीं) आ टेस्टकेस (बनाईं) पन्ना पर अभ्यास भा प्रयोग (टेस्टिंग) क सकत बाटे। एह मॉड्यूल के उपपन्ना (सबपेज) देखीं। |
local p = {}
--[[
main
This function returns parameter 1 as a warning if the page containing it is being previewed.
Usage:
{{#invoke:Preview warning|main|warning_text}}
]]
function p.main(frame)
local preview = frame.args[1]:match('^%s*(.-)%s*$') or ''
if preview == '' then preview = 'Something is wrong with this template' end
if frame:preprocess( "{{REVISIONID}}" ) == "" then return '<div class="hatnote" style="color:red"><strong>Warning:</strong> ' .. preview .. ' (this message is shown only in preview)</div>' end
end
return p