@cccsaurora/howler-ui 2.15.0-dev.310 → 2.15.0-dev.313

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.
@@ -46,7 +46,15 @@ const HandlebarsMarkdown = ({ md, object = {}, disableLinks = false }) => {
46
46
  setMdComponents(_components => ({ ..._components, [id]: result }));
47
47
  }
48
48
  }
49
- return new Handlebars.SafeString(`\`${id}\``);
49
+ /*
50
+ We add two newlines because:
51
+
52
+ ## Hello, World
53
+ `123123123`
54
+
55
+ does not parse as a code object.
56
+ */
57
+ return new Handlebars.SafeString(`\n\n\`${id}\``);
50
58
  }
51
59
  return helper.callback(...args);
52
60
  });
package/package.json CHANGED
@@ -96,7 +96,7 @@
96
96
  "internal-slot": "1.0.7"
97
97
  },
98
98
  "type": "module",
99
- "version": "2.15.0-dev.310",
99
+ "version": "2.15.0-dev.313",
100
100
  "exports": {
101
101
  "./i18n": "./i18n.js",
102
102
  "./index.css": "./index.css",
@@ -1,7 +1,7 @@
1
1
  import type { Hit } from '@cccsaurora/howler-ui/models/entities/generated/Hit';
2
2
  import { Event } from 'react-pluggable';
3
- import type HowlerPlugin from './HowlerPlugin';
4
3
  import type { AppLeftNavElement } from '../commons/components/app/AppConfigs';
4
+ import type HowlerPlugin from './HowlerPlugin';
5
5
  export declare class HitEvent extends Event {
6
6
  hit: Hit;
7
7
  constructor(type: string, hit: Hit);