Publish html_to_markdown (#13718)

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
This commit is contained in:
Marshall Bowers
2024-07-01 17:18:58 -04:00
committed by GitHub
parent 3419f5fc42
commit 3a43adba00
4 changed files with 7 additions and 4 deletions
+5 -2
View File
@@ -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
+1
View File
@@ -0,0 +1 @@
../../LICENSE-APACHE
-1
View File
@@ -1 +0,0 @@
../../LICENSE-GPL
@@ -1,4 +1,4 @@
//! Provides conversion from rustdoc's HTML output to Markdown.
//! Convert HTML to Markdown.
mod html_element;
pub mod markdown;