dragon-book-exercise-answers icon indicating copy to clipboard operation
dragon-book-exercise-answers copied to clipboard

3.1.2: no lexeme for A and IMG tags parameters

Open bkg2018 opened this issue 7 years ago • 0 comments

The tag <img src="house.gif"/> is translated into <selfendnode, img>, loosing the src parameter.

Same goes for <a href="morePix.html"> which becomes <nodestart, a>, loosing the href parameter.

I would suggest cutting like this :

<nodestart, img> <nodeparam, src> <=> <text, "house.gif"> <nodeend>

and

<nodestart, a> <nodeparam, href> <=> <text, "morePix.html"> <nodeend>

bkg2018 avatar May 14 '17 07:05 bkg2018