-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[1.0] Added support for html img tags to the gatsby-remark-copy-link plugin #1284
Closed
chiedo
wants to merge
814
commits into
gatsbyjs:master
from
chiedo:topics/gatsby-remark-copy-links-fixes
Closed
[1.0] Added support for html img tags to the gatsby-remark-copy-link plugin #1284
chiedo
wants to merge
814
commits into
gatsbyjs:master
from
chiedo:topics/gatsby-remark-copy-links-fixes
Conversation
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
Pages are cheap to create so caching them doesn't save much time also there's no way currently to detect if a page is removed (nor is it straightforward for all cases) so let's just have plugins create pages from scratch on every bootstrap. We still need to work on hot reloading for page generation. It might make sense during development to just call `createPages` every time data changes.
* Adds example boilerplate * Adds example
* Some updates to docs on modifying pages * Add comment to code
…sbyjs#1003) * Expand list of modules that are part of gatsby + add babel plugin to remove prop-types * Remove babel plugin removing prop-types as soon sites want that in prod
* fix path generation for windows operating systems ensure that the cache file will be generated with escaped file paths. * moved utility to own util file and cleanup
* Move the automatic page creation for components to an internal plugin * Copy package.json from internal plugins to dist
…atsbyjs#1011) * Fix sharp test * Ensure all graphql keys are valid
"lerna bootstrap" is now run automatically so no need to tell people to do it manually.
…tsbyjs#1017) Connects to gatsbyjs#1015 Change-Type: chore
… queryable (gatsbyjs#1014) * Fix sharp test * Ensure all graphql keys are valid * Use localhost as default development host * Add internal-data-bridge internal plugin which pushes internal data into the data system * Add page information to data system * Work around what seems to be a bug in redux where subscriber doesn't see action if action is emitted by a previous subscriber * Use EventEmitter2 for listening to internal actions * Run format * Correct dependency
* Some fixes for source-contentful * Update yarn.lock
…ries/assets (gatsbyjs#1264) * Create new way to handle not resolveable entries/assets since fetch doesn't show errors in same way * Fix timer
* Add tests for parsing regex args + fix bug * fix old test
* Preload fonts used on the homepage * Prefetch fonts used on non-index routes
…ing (gatsbyjs#1274) * Add tests for existing contentful functionality * Move download script out of __tests__ so jest doesn't try to run it
…to make GraphQL happy (gatsbyjs#1276) * Left pad ids starting with a number so don't cause problems in GraphQL (it disallows names starting numbers) * The sync API changed the data structure of our content types
* [WIP] initial commit of transformer-js, doesn't show in queries * filter nodes, clean up, and write as full try/catch/finally block * forgot to define exportsData * update readme * clean out commented tests, TODO: add real tests * update node name to JsFrontmatter to avoid confusion * empty test file fails on jest, delete for now * rename package, put data (named as such) at top level * update readme to match data structure change * fix up remaining items with comments
meant to PR to 1.0 |
Deploy preview ready! Built with commit 80ca8f5 |
Deploy preview ready! Built with commit 80ca8f5 |
Deploy preview ready! Built with commit 80ca8f5 |
This was referenced Mar 16, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Prior to this fix, only markdown img tags would work. Now html img tags work also.