
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
ember-smart-format
Advanced tools
Please, if you are using this addon to markdown your text, consider using something else like ember-cli-markdownit, ember-showdown. They are more robust, comply with a popular standard, have greater support, and most important: they are less likely to have security/performance issues. This addon relies heavily on regex and it implements its own tags. Stick with some popular standard.:)
Ember addon to convert parts of your text that are using smart tags to valid html blocks.
ember install ember-smart-format
{{smart-format text='The quick fox **jumps** over the lazy dog'}}
Output: The quick fox jumps over the lazy dog
Simple tags:
| Syntax | Output |
|---|---|
| **text** | <b>text</b> |
| #text | <h3>text</h3> |
| [code language]my code[/code] | <pre><code class="language">my code</code></pre> |
| [img myimg] | <img src="${media}myimg" class="img"> |
| [outimg myimg] | <img src="myimg" class="img"> |
| [caption mycaption] | <figcaption class="figure-caption">mycaption</figcaption> |
| [link text|url] | <a href="url">text</a> |
More complex tags:
Example 1 (you can also use ol instead of ul):
[ul]*item1
*item2
*item3[/ul]
Output 1:
Example 2:
[table] |header1| |header2|
|col1| |col2| [/table]
Output 2:
| header1 | header2 |
|---|---|
| col1 | col2 |
This addon uses ember-highlightjs-shim to format code blocks. Read more on how to pick a theme in their documentation.
Right now the only configuration you can have besides for the <code> tags,
is for your <img> tags. By default it appends the path/name you use in
[img path/name] to your root url, but if you want to use a different source for
your images, or have a namespace for your path you can add the following in your
config/environment.js
let ENV = {
...
'smartFormat': {
'media': '/my-image-repository/';
}
...
}
So when using [img 01-01-2018/fireworks.png] will show <img src="/my-image-repository/01-01-2018/fireworks.png">
If you have any question or suggestion, please open an issue.
git clone https://github.com/rennomarcus/ember-smart-format.gitember sember test or ember s and go to /testsFAQs
Ember addon to wrap strings with smart tags in html blocks.
We found that ember-smart-format demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.