📄 tools.asp
字号:
<%
function txt2html(txt)
txt2html=txt
if ishtml(txt2html) then
txt2html=replace(txt2html,"[HTML]","")
txt2html=replace(txt2html,"[/HTML]","")
exit function
end if
txt2html=replace(txt2html,"<","<")
txt2html=replace(txt2html,">",">")
txt2html=replace(txt2html,"&","&")
txt2html=replace(txt2html,chr(13),"<br>")
txt2html=replace(txt2html," "," ")
end function
function ishtml(txt)
if txt="" or isnull(txt) then
ishtml=false
exit function
end if
if instr(txt,"[HTML]")>0 and instr(txt,"[/HTML]")>0 then
ishtml=true
else
ishtml=false
end if
end function
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -