From 91e03166ba64e35f8f9484f6e9325da2309fd58a Mon Sep 17 00:00:00 2001 From: Jeff Yeon Date: Mon, 29 Jan 2018 19:55:49 -0800 Subject: [PATCH] docs(README): escape `|` character in options table (#300) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b00712e..61496412 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ Styles are not added on `import/require()`, but instead on call to `use`/`ref`. |**`attrs`**|`{Object}`|`{}`|Add custom attrs to ``| |**`transform`** |`{Function}`|`false`|Transform/Conditionally load CSS by passing a transform/condition function| |**`insertAt`**|`{String\|Object}`|`bottom`|Inserts `` at the given position| -|**`insertInto`**|`{String|Function}`|``|Inserts `` into the given position| +|**`insertInto`**|`{String\|Function}`|``|Inserts `` into the given position| |**`singleton`**|`{Boolean}`|`undefined`|Reuses a single `` element, instead of adding/removing individual elements for each required module.| |**`sourceMap`**|`{Boolean}`|`false`|Enable/Disable Sourcemaps| |**`convertToAbsoluteUrls`**|`{Boolean}`|`false`|Converts relative URLs to absolute urls, when source maps are enabled|