Publish `html_to_markdown` (#13718)

Marshall Bowers created

This PR updates the `html_to_markdown` crate with the necessary changes
to publish it to crates.io.

Publishing it makes it available for use within extensions when
implementing functionality for the Assistant.

Release Notes:

- N/A

Change summary

crates/html_to_markdown/Cargo.toml              | 7 +++++--
crates/html_to_markdown/LICENSE-APACHE          | 1 +
crates/html_to_markdown/LICENSE-GPL             | 1 -
crates/html_to_markdown/src/html_to_markdown.rs | 2 +-
4 files changed, 7 insertions(+), 4 deletions(-)

Detailed changes

crates/html_to_markdown/Cargo.toml 🔗

@@ -1,9 +1,12 @@
 [package]
 name = "html_to_markdown"
 version = "0.1.0"
+description = "Convert HTML to Markdown"
+repository = "https://github.com/zed-industries/zed"
+documentation = "https://docs.rs/html_to_markdown"
+keywords = ["html", "markdown", "html-to-markdown"]
 edition = "2021"
-publish = false
-license = "GPL-3.0-or-later"
+license = "Apache-2.0"
 
 [lints]
 workspace = true