/** * (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary. * * @format * @oncall static_docs */ import { Plugin } from 'unified'; /** * This is a rehype plugin that detects tags that have links going somewhere other than this site. * When it finds one, it changes them to open in a new tab if it doesn't have an explicit target set already * The reason is to keep them working inside iframes. */ declare const fixLinkTargetsPlugin: Plugin; export default fixLinkTargetsPlugin;