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:
@@ -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
@@ -0,0 +1 @@
|
||||
../../LICENSE-APACHE
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user