drone-os / drone

CLI utility for Drone, an Embedded Operating System.
https://www.drone-os.com/
Apache License 2.0
165 stars 20 forks source link

Disable Handlebar escaping some characters when creating Cargo.toml #13

Closed thvdveld closed 4 years ago

thvdveld commented 4 years ago

This was causing an issue when creating a new drone project. Handlebars escapes &"<> characters by default and generated the following Cargo.toml:

[package]
name &#x3D; &quot;test_project&quot;
version &#x3D; &quot;0.1.0&quot;
authors &#x3D; [&quot;Thibaut Vandervelden &lt;email@domain.com&gt;&quot;]
edition &#x3D; &quot;2018&quot;
resolver &#x3D; &quot;2&quot;

This PR disables escaping of these characters.

valff commented 4 years ago

Thanks!