Converting Binary HTML data to HTML

I’m trying to capture the HTML from a Google Doc in Make.

I have downloaded the Google doc in HTML format. The output is encoded in binary.

I have placed a “convert the encoding of a text” right after setting up the output data codepage to ASCII. I get the HTML but I’m losing all the styles and CSS.

Is there a way to get the HTML and keeping the CSS in the code ?

Hey @Bennaim

Instead of the “convert the encoding of a text” module you can use the built-in function toString

e.g.:

{{ toString(7.data) }}
1 Like