Adding a linebreak in some attribute string(like src or href ) in HTML / XML source

╄→尐↘猪︶ㄣ 提交于 2019-12-02 01:29:39

That's it:

<iframe 
	src = "
		https://www.google.com/recaptcha/api2/anchor
			?	k	=	6LeaOiITAAAAAF_A-e9qjM6TCgdt4-rqixnkkatL
			&	co	=	aHR0cDovL3BsYXkuc3BvdGlmeS5jb20
			&	hl	=	de
			&	v	=	r20160802154045
			&	theme	=	dark
			&	size	=	normal
			&	cb	=	ap65yyq41qhy
		"
	></iframe>

Well the secret ingredient here is to use solidly tab's instead of space when you are inside some string! The parser will filter them out and you get some working url.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!