forked from foundryvtt/pf2e
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add markdown support to item description addenda (foundryvtt#14022)
- Loading branch information
Showing
7 changed files
with
33 additions
and
13 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,22 @@ | ||
import type GSAP from "gsap"; | ||
import type HANDLEBARS from "handlebars"; | ||
import { showdown as SHOWDOWN } from "showdownf"; | ||
|
||
declare global { | ||
const CONST: typeof Constants; | ||
|
||
namespace globalThis { | ||
export import Color = Utils.Color; | ||
export import gsap = GSAP; | ||
const Color = Utils.Color; | ||
export import Handlebars = HANDLEBARS; | ||
const gsap = GSAP; | ||
export import showdown = SHOWDOWN; | ||
|
||
namespace foundry { | ||
export import CONST = Constants; | ||
export import abstract = Abstract; | ||
export import data = Data; | ||
export import documents = Documents; | ||
export import utils = Utils; | ||
const CONST = Constants; | ||
const abstract = Abstract; | ||
const data = Data; | ||
const documents = Documents; | ||
const utils = Utils; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters