I have a macOS application that stores text as an HTML file inside a package (directory bundle). The system Rich Text importer already knows how to extract text from HTML files. Is there a way to write an importer for my application that calls the Rich Text importer on the HTML file? I can see from the Spotlight Importer boilerplate code that it is being invoked as a COM plugin, but it is not obvious how to invoke it from my importer.
Can one Spotlight importer call another?
153 Views Asked by Alan Snyder At
1
There are 1 best solutions below
Related Questions in MACOS
- How do I customize NSOutlineView to have border color?
- Force sublime text to use PATH from the shell value
- Do executable files always open a terminal window on MacOS?
- setting OpenGL version in objective-C
- C std library don't appear to be linked in object file
- Cross compile simple standard C program on Linux for Mac
- How to generate request format for WCF web service method for Mac and iPhone
- Bundle Multiple Xamarin apps in one pkg installer
- How to Handle Command Line Prompt from a Cocoa App
- AVFoundation - Process each image separately
- CMYK NSImage get pixel data
- how i get the mac of ibeacon or BLE
- Set JAVA_HOME on Mac
- Finding active IPv6 interfaces under Mac OS (using Python)
- OSX: Why is my launchd agent running my script twice?
Related Questions in SPOTLIGHT
- Swift 2.0 Core Spotlight API - search only for title
- How to change SpotLight shadowCameraNear parameter in THREE.js?
- Can one Spotlight importer call another?
- NSMetadataQueryDidFinishGatheringNotification never called
- How can I force Spotlight to index my application's plain text files in the user's ~/Library/Application Support directory?
- How to search a directory and display search results in a table in Objective-C
- File search application for mac os x with wildcard support
- Does Apple's SearchKit support sorting based on metadata?
- Querying with spotlight
- How can I tell Spotlight to index my .dSYM bundles?
- iOS App Title in Settings
- No Spotlight on moon.inputDecorator "SECOND TIME" while disabling pointermode in rendered
- Identifying the server (NAS, Synology, QNAP) of a mounted SMB volume in macOS
- Calculator-like spotlight tool
- examining audio file alternative to spotlight
Related Questions in SPOTLIGHT-PLUGIN
- Can one Spotlight importer call another?
- jQuery Spotlight Issue
- Spotlight and QuickLook integration
- Additional attributes for custom document type not showing in Finder Get Info
- Record Level Spotlight indexing with Coredata
- Spotlight importer: how to hide the actual file name?
- Spotlight UI unable to find Core Data external record files inside Sandbox
- Adding attribute to spotlight for a system type (UTI public.audio)
- Spotlight Importer - Category
- Spotlight plugin reading NSDocument causing "deny file-write-data" error in console
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I figured out how to do it: