grace

Markdown like text processor for React/Angular

Лицензия

Лицензия

Группа

Группа

xyz.justblink
Идентификатор

Идентификатор

grace
Последняя версия

Последняя версия

1.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

grace
Markdown like text processor for React/Angular
Ссылка на сайт

Ссылка на сайт

https://github.com/kasun90/grace
Система контроля версий

Система контроля версий

https://github.com/kasun90/grace/tree/master

Скачать grace

Имя Файла Размер
grace-1.0.pom
grace-1.0.jar 50 KB
grace-1.0-sources.jar 26 KB
grace-1.0-javadoc.jar 312 KB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/xyz.justblink/grace/ -->
<dependency>
    <groupId>xyz.justblink</groupId>
    <artifactId>grace</artifactId>
    <version>1.0</version>
</dependency>
// https://jarcasting.com/artifacts/xyz.justblink/grace/
implementation 'xyz.justblink:grace:1.0'
// https://jarcasting.com/artifacts/xyz.justblink/grace/
implementation ("xyz.justblink:grace:1.0")
'xyz.justblink:grace:jar:1.0'
<dependency org="xyz.justblink" name="grace" rev="1.0">
  <artifact name="grace" type="jar" />
</dependency>
@Grapes(
@Grab(group='xyz.justblink', module='grace', version='1.0')
)
libraryDependencies += "xyz.justblink" % "grace" % "1.0"
[xyz.justblink/grace "1.0"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

grace

Simple markdown like text processor for developers.

This is intended to be used together with React Grace. You can directly feed the processed result from Grace to this React component.

Usage

Document document = Processor.process(new File("sample.txt"));
ExportableTagRenderer tagRenderer = ExportableTagRenderer.builder().build();
ExportableTag exportableTag = tagRenderer.render(document);

This ExportableTag can be directly fed in to the React component.

Supported formats are below

Paragraph

Anything without any special notation is a paragraph. Paragraph breaks can be achieved by new lines.

Header

# This is an H1

## This is an H2

###### This is an H6

Note

!!
This is a note
!!

Image

!(your/image/url/here)

Unordered List

** list item 1
** list item 2
** list item 3

Ordered List

*@ list item 1
*@ list item 2
*@ list item 3

Terminal Prompt

```
$ This is a command
$ This is another command
```

Code

``
This can be anything which appears as code or console text
``

Gist

A gist can be used to quickly showcase a coding snippet.

Example

[gist](kasun90/76ec75f3d7922c7f8d2dd11030342a0b)

Syntax

[gist](<github_username>/<gist_id>)

Author

Kasun Piyumal

Версии библиотеки

Версия
1.0