I'm working on an AngularJS 1.5 project with PhoneGap. Now I would like to write the HTML output to a textfile.
I was trying to use the innerHTML function, but this returns the wrong output, example this return:
<html>
<body>Hi {{ Name }}</body>
</html>
What I really want to save:
<html>
<body>Hi Developer</body>
</html>
Does someone has the solution? Thanks!