@podlite/markdown 0.0.3 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
1
  # @podlite/markdown
2
+ ## 0.0.5
3
+ - refactor
4
+ ## 0.0.4
5
+ - fix export
2
6
  ## 0.0.3
3
7
  - update deps
4
8
  ## 0.0.2
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2022 Alexandr Zahatski
3
+ Copyright © 2022-2024 Aliaksandr Zahatski
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -8,7 +8,7 @@ In order to keep the match between this documentation and the last release, plea
8
8
 
9
9
  ## AUTHOR
10
10
 
11
- Copyright (c) 2022 Alexandr Zahatski
11
+ Copyright (c) 2022-2024 Aliaksandr Zahatski
12
12
 
13
13
  ## License
14
14
 
package/esm/index.d.ts CHANGED
@@ -2,4 +2,5 @@ import { Plugins } from '@podlite/schema';
2
2
  import { Plugin } from '@podlite/schema';
3
3
  export declare const plugin: Plugin;
4
4
  export declare const PluginRegister: Plugins;
5
+ export { md2ast as parseMd } from './tools';
5
6
  export default plugin;