diff options
| author | 2022-10-13 10:40:01 +0200 | |
|---|---|---|
| committer | 2022-10-13 10:40:01 +0200 | |
| commit | ec2d1bfb4232178fb3a6cba36f138bc6efbbf34a (patch) | |
| tree | 2da4be3be22c2324c48cb17133b3f4b26b9139d2 /tests/test_utils/hast.rs | |
| parent | 861af95c119721e814460fa7dc32bd3d74b38484 (diff) | |
| download | markdown-rs-ec2d1bfb4232178fb3a6cba36f138bc6efbbf34a.tar.gz markdown-rs-ec2d1bfb4232178fb3a6cba36f138bc6efbbf34a.tar.bz2 markdown-rs-ec2d1bfb4232178fb3a6cba36f138bc6efbbf34a.zip | |
Rename crate to `markdown`
Diffstat (limited to 'tests/test_utils/hast.rs')
| -rw-r--r-- | tests/test_utils/hast.rs | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/tests/test_utils/hast.rs b/tests/test_utils/hast.rs index bc8f472..09a180a 100644 --- a/tests/test_utils/hast.rs +++ b/tests/test_utils/hast.rs @@ -6,14 +6,14 @@  // ^-- To do: externalize.  extern crate alloc; -extern crate micromark; +extern crate markdown;  use alloc::{      fmt,      string::{String, ToString},      vec::Vec,  }; -pub use micromark::mdast::{AttributeContent, AttributeValue, MdxJsxAttribute, Stop}; -use micromark::unist::Position; +pub use markdown::mdast::{AttributeContent, AttributeValue, MdxJsxAttribute, Stop}; +use markdown::unist::Position;  /// Nodes.  #[derive(Clone, PartialEq, Eq)] | 
