### Run Add Code Example Schematic (npm) Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/schematics/README.md This command runs the 'add-code-example' schematic using npm. It requires the schematic package to be installed globally. The primary argument is the name for the new code example. ```bash npm run add-code-example [name] -w projects/sds ``` -------------------------------- ### Run Add Preview Schematic (npm) Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/schematics/README.md This command executes the 'add-preview' schematic via npm, requiring the schematics package to be installed. It takes two arguments: the name of the code example (which can be new or existing) and the name of the new preview to be added. ```bash npm run add-preview [code-example] [preview] -w projects/sds ``` -------------------------------- ### Install and Use Oblique CLI Source: https://context7.com/thongdanghoang/verbose-funicular/llms.txt Installs the Oblique CLI globally and demonstrates creating a new Angular workspace with Oblique pre-configured. It outlines the interactive prompts for setup, including component prefix, application title, supported locales, schema validation, HTTP interceptor, testing frameworks, and code quality tools. ```bash # Install CLI globally npm install -g @oblique/cli # Create new Angular workspace with Oblique pre-configured ob new my-government-app --interactive # Interactive prompts will ask for: # - Prefix for components (default: 'app') # - Application title # - Supported locales (de-CH, fr-CH, it-CH) # - Schema validation with Ajv # - HTTP interceptor configuration # - Jest for testing # - ESLint, Prettier, Husky setup # Update Oblique and dependencies in existing project cd my-government-app ob update # Show version ob -v # Show help ob -h ``` -------------------------------- ### Install Oblique with ng add Schematic Source: https://context7.com/thongdanghoang/verbose-funicular/llms.txt Provides instructions for installing the Oblique framework into an existing Angular project using the `ng add` schematic. It covers both interactive installation with detailed prompts for configuration and non-interactive installation using default settings. The command automatically updates project files like `angular.json`, `package.json`, and `app.config.ts`. ```bash # Add Oblique to existing Angular project cd my-angular-project ng add @oblique/oblique # Interactive prompts will configure: # 1. Application title (for master layout header) # 2. Locales: de-CH, fr-CH, it-CH (multi-select) # 3. Schema validation with Ajv (Yes/No) # 4. Unknown route module (404 handling) (Yes/No) # 5. HTTP interceptor (automatic error handling) (Yes/No) # 6. Banner (environment indicator) (Yes/No) # 7. External links module (Yes/No) # 8. Language selection in header (Yes/No) # 9. Font Awesome icons (Yes/No) # 10. OAuth authentication (Yes/No) # 11. Jest testing framework (Yes/No) # 12. Sonar configuration (Yes/No) # 13. Prettier code formatter (Yes/No) # 14. ESLint (Yes/No) # 15. Lint-staged (pre-commit hooks) (Yes/No) # 16. Husky git hooks (Yes/No) # Non-interactive installation with defaults ng add @oblique/oblique --skip-confirmation # After installation, files are automatically updated: # - angular.json (adds Oblique styles) # - package.json (adds dependencies) # - tsconfig.json (adds paths) # - app.config.ts (adds provideObliqueConfiguration) # - app.component.ts (adds master layout) # Start development server npm start ``` -------------------------------- ### HTML Definition Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag represents the term (or word) that is being defined in the context of a definition (or glossary) list. ```html The term Snaccident refers to eating an entire pizza by accident. ``` -------------------------------- ### HTML Keyboard Input Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag defines keyboard input. It represents user input that is to be typed on a keyboard. ```html To escape from reality, press Ctrl + Alt + Dream. ``` -------------------------------- ### HTML Sample Output Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag defines sample output from a computer program. It is typically rendered in a monospace font. ```html Error 404: Snack not found. ``` -------------------------------- ### HTML Small Text Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag defines text that should be styled with a smaller font, such as for copyright or legal text. ```html This is some important information but in a very small text to test your eyesight. ``` -------------------------------- ### Date Picker with Initial Value Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/form/previews/other-options/datepicker-example-other-options-preview.component.html Shows a date picker component initialized with a specific starting date. This is useful for pre-populating the date selection. ```html

A date picker with an initial date

``` -------------------------------- ### HTML Code Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag defines a piece of computer code. This tag is used for inline code snippets. ```html if (coffeeCup.isEmpty()) {{ refill(); }} else { sip(); } ``` -------------------------------- ### HTML Superscript Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag defines superscript text. This is typically used for footnotes, mathematical notations, or exponents. ```html E=mc2 and also coffee2 = happiness. ``` -------------------------------- ### HTML Mark Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag defines marked or highlighted text. It is often used to highlight search results or important text. ```html Do not forget to feed the cat at 6 PM or face the consequences. ``` -------------------------------- ### HTML Variable Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag represents a variable in a mathematical expression or a programming context. It is typically rendered in italics. ```html In the equation of life, happiness = cats + coffee. ``` -------------------------------- ### HTML Anchor Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag defines a hyperlink, used to link from one page to another. The href attribute specifies the URL of the page the link goes to. ```html A sample anchor. ``` -------------------------------- ### HTML Bold Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag specifies bold text without any extra importance. Use this for keywords, or introductory paragraphs, without conveying they have extra importance. ```html I told my cat she was not allowed on the table. She showed me her "I don't care" face. ``` -------------------------------- ### HTML Abbreviation Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag is used to mark up abbreviations and acronyms. It can provide a full description in its title attribute. ```html HTML, CSS, and JS. ``` -------------------------------- ### HTML Output Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag represents the result of a calculation or the outcome of a user action. It's often used with JavaScript to display results. ```html 42 - the answer to life, universe, and everything. ``` -------------------------------- ### HTML Subscript Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag defines subscript text. This is typically used for chemical formulas or mathematical notations. ```html H2O is my favorite beverage. ``` -------------------------------- ### HTML Inline Quotation Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag defines a short quotation. Browsers typically insert quotation marks around the content. ```html As my grandma always says, An apple a day keeps anyone away if you throw it hard enough. ``` -------------------------------- ### HTML Citation Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag defines the title of a work (e.g. a book, essay, paper, website, song, play, poem, radio program, film, television program, comic strip, or video game). ```html My favorite book is How to Train Your Human by Whiskers McFluffy. ``` -------------------------------- ### HTML Idiomatic Text Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `` tag defines a part of text in an alternate voice or mood, or otherwise offset from the normal prose. Typically rendered in italics. ```html I'm on a seafood diet. I see food, and I eat it. ``` -------------------------------- ### HTML Label Tag Example Source: https://github.com/thongdanghoang/verbose-funicular/blob/main/projects/sds/src/app/code-examples/code-examples/typography/previews/inline-elements/typography-example-inline-elements-preview.component.html The `