Home > OS >  How can i use single qoutes in html using python
How can i use single qoutes in html using python

Time:07-08

Here is the code title its an attribute

``` src="[sc name='testt2' id=''' title '''][/sc]/```

whene i put it between single qoutes the attribute shows up like a html code :

``` src="[sc name='testt2' id='''' title ''''][/sc]/```

CodePudding user response:

Add \ backslash before each comma.

  • Related