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
// | |
// @urbit/groups | |
// | |
// import Airlock, { Poke, Watch, scry } from '@urbit/airlock' | |
// declare types | |
// | |
interface Group {} | |
type Groups = Record<string, Group>; | |
export type GroupUpdate = GroupUpdateAddMembers | GroupUpdateRemoveMembers; |
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
<?php | |
// List of tags to be replaced and their replacement | |
$replace_tags = [ | |
'i' => 'em', | |
'b' => 'strong' | |
]; | |
// List of tags to be stripped. Text and children tags will be preserved. | |
$remove_tags = [ |