grep.app search preview dialog
This file contains hidden or 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
| /* Box sizing rules */ | |
| *, | |
| *::before, | |
| *::after { | |
| box-sizing: border-box; | |
| } | |
| /* Prevent font size inflation */ | |
| html { |
This file contains hidden or 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
| console.log('TEST FROM REMOTE SRC') |
This file contains hidden or 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
| alias: Voice PE - Pause TV when Voice PE Listening | |
| description: "In order to improve voice command recognition, pause any media players playing in the background while listening for a command." | |
| triggers: | |
| - trigger: state | |
| entity_id: | |
| - assist_satellite.home_assistant_voice_090de2_assist_satellite # Voice PE Satellite entity | |
| to: listening | |
| conditions: | |
| - condition: not | |
| conditions: |
This file contains hidden or 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
| import path from "node:path"; | |
| import fs from "node:fs"; | |
| import { GraphQLClient, gql } from "graphql-request"; | |
| import { marked } from "marked"; | |
| type HelpCenterArticle = { | |
| id: string; | |
| title: string; | |
| description: string; | |
| contentHtml: string; |
This file contains hidden or 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
| export const urlMapping = { | |
| // MT Studio | |
| "https://help.inten.to/hc/en-us/categories/360003100099-Intento-MT-Studio": | |
| "https://help.inten.to/section/intento-mt-studio", | |
| "https://help.inten.to/hc/en-us/sections/4413578103442-Evaluation-Projects": | |
| "https://help.inten.to/section/evaluation-projects", | |
| "https://help.inten.to/hc/en-us/articles/4749773136924-Data-Cleaning": | |
| "https://help.inten.to/article/mt-studio-data-cleaning", | |
| "https://help.inten.to/hc/en-us/articles/360020905319-Train-Custom-Models-With-MT-Studio": |
OlderNewer