rename furbooru_markdown to philomena_markdown

This commit is contained in:
Luna D 2021-09-12 22:07:43 +02:00
parent 14db174c26
commit 8a1ec4ce73
No known key found for this signature in database
GPG key ID: 81AF416F2CC36FC8
8 changed files with 25 additions and 32 deletions

View file

@ -38,7 +38,7 @@ config :philomena, PhilomenaWeb.Endpoint,
# Markdown
config :philomena, Philomena.Markdown,
crate: "furbooru_markdown",
crate: "philomena_markdown",
mode: :release
config :phoenix, :template_engines,

View file

@ -12,7 +12,7 @@ defmodule Philomena.MixProject do
aliases: aliases(),
deps: deps(),
dialyzer: [plt_add_apps: [:mix]],
rustler_crates: [furbooru_markdown: []]
rustler_crates: [philomena_markdown: []]
]
end

View file

@ -40,7 +40,7 @@
"metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], [], "hexpm", "69b09adddc4f74a40716ae54d140f93beb0fb8978d8636eaded0c31b6f099f16"},
"mime": {:hex, :mime, "1.6.0", "dabde576a497cef4bbdd60aceee8160e02a6c89250d6c0b29e56c0dfb00db3d2", [:mix], [], "hexpm", "31a1a8613f8321143dde1dafc36006a17d28d02bdfecb9e95a880fa7aabd19a7"},
"mimerl": {:hex, :mimerl, "1.2.0", "67e2d3f571088d5cfd3e550c383094b47159f3eee8ffa08e64106cdf5e981be3", [:rebar3], [], "hexpm", "f278585650aa581986264638ebf698f8bb19df297f66ad91b18910dfc6e19323"},
"mint": {:hex, :mint, "1.3.0", "396b3301102f7b775e103da5a20494b25753aed818d6d6f0ad222a3a018c3600", [:mix], [{:castore, "~> 0.1.0", [hex: :castore, repo: "hexpm", optional: true]}], "hexpm", "a9aac960562e43ca69a77e5176576abfa78b8398cec5543dd4fb4ab0131d5c1e"},
"mint": {:hex, :mint, "1.4.0", "cd7d2451b201fc8e4a8fd86257fb3878d9e3752899eb67b0c5b25b180bde1212", [:mix], [{:castore, "~> 0.1.0", [hex: :castore, repo: "hexpm", optional: true]}], "hexpm", "10a99e144b815cbf8522dccbc8199d15802440fc7a64d67b6853adb6fa170217"},
"mix_audit": {:hex, :mix_audit, "0.1.4", "35c424173a574436a80ad7f63cf014a7d9ce727de8cd4e7b4138d90b11aec043", [:make, :mix], [{:jason, "~> 1.1", [hex: :jason, repo: "hexpm", optional: false]}, {:yaml_elixir, "~> 2.4.0", [hex: :yaml_elixir, repo: "hexpm", optional: false]}], "hexpm", "7a43fee661bcadbad31aa04a86d33a890421c174723814b8a3a7f0e7076936a1"},
"neotoma": {:hex, :neotoma, "1.7.3", "d8bd5404b73273989946e4f4f6d529e5c2088f5fa1ca790b4dbe81f4be408e61", [:rebar], [], "hexpm", "2da322b9b1567ffa0706a7f30f6bbbde70835ae44a1050615f4b4a3d436e0f28"},
"nimble_parsec": {:hex, :nimble_parsec, "1.1.0", "3a6fca1550363552e54c216debb6a9e95bd8d32348938e13de5eda962c0d7f89", [:mix], [], "hexpm", "08eb32d66b706e913ff748f11694b17981c0b04a33ef470e33e11b3d3ac8f54b"},

View file

@ -137,12 +137,11 @@ dependencies = [
[[package]]
name = "comrak"
version = "0.12.1"
source = "git+https://github.com/furbooru/comrak#b69625ef55b855675d9597c9dd5fe2dda50cc0c6"
source = "git+https://github.com/philomena-dev/comrak?branch=main#94941ad6f41fa308383601e5b098c643e3bf80e2"
dependencies = [
"clap",
"entities",
"lazy_static",
"log",
"pest",
"pest_derive",
"regex",
@ -221,19 +220,6 @@ version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394"
[[package]]
name = "furbooru_markdown"
version = "0.2.0"
dependencies = [
"comrak",
"jemallocator",
"lazy_static",
"log",
"pretty_env_logger",
"regex",
"rustler",
]
[[package]]
name = "generic-array"
version = "0.12.4"
@ -461,6 +447,19 @@ dependencies = [
"sha-1",
]
[[package]]
name = "philomena_markdown"
version = "0.2.0"
dependencies = [
"comrak",
"jemallocator",
"lazy_static",
"log",
"pretty_env_logger",
"regex",
"rustler",
]
[[package]]
name = "pkg-config"
version = "0.3.19"

View file

@ -1,16 +1,16 @@
[package]
name = "furbooru_markdown"
name = "philomena_markdown"
version = "0.2.0"
authors = ["Xe <https://github.com/Xe>", "Luna <https://github.com/Meow>", "Liam White <https://github.com/liamwhite>"]
edition = "2018"
[lib]
name = "furbooru_markdown"
name = "philomena_markdown"
path = "src/lib.rs"
crate-type = ["dylib"]
[dependencies]
comrak = { git = "https://github.com/furbooru/comrak" }
comrak = { git = "https://github.com/philomena-dev/comrak", branch = "main" }
lazy_static = "1.4"
regex = "1.5"
log = "0"

View file

@ -1,4 +1,4 @@
# NIF for Elixir.Furbooru.Markdown
# NIF for Elixir.Philomena.Markdown
## To build the NIF module:
@ -9,8 +9,8 @@
## To load the NIF:
```elixir
defmodule Furbooru.Markdown do
use Rustler, otp_app: <otp-app>, crate: "furbooru_markdown"
defmodule Philomena.Markdown do
use Rustler, otp_app: <otp-app>, crate: "philomena_markdown"
# When your NIF is loaded, it will override this function.
def add(_a, _b), do: :erlang.nif_error(:nif_not_loaded)

View file

@ -38,11 +38,8 @@ fn to_html(input: String) -> String {
options.extension.table = true;
options.extension.description_lists = true;
options.extension.superscript = true;
options.extension.subscript = true;
options.extension.spoiler = true;
options.extension.strikethrough = true;
options.extension.underline = true;
// options.extension.furbooru = true;
options.extension.philomena = true;
options.parse.smart = true;
options.render.hardbreaks = true;
options.render.github_pre_lang = true;
@ -82,11 +79,8 @@ fn to_html_unsafe(input: String) -> String {
options.extension.table = true;
options.extension.description_lists = true;
options.extension.superscript = true;
options.extension.subscript = true;
options.extension.spoiler = true;
options.extension.strikethrough = true;
options.extension.underline = true;
// options.extension.furbooru = true;
options.extension.philomena = true;
options.parse.smart = true;
options.render.hardbreaks = true;
options.render.github_pre_lang = true;