Skip to content

Commit

Permalink
Attempt to fix recipes with $
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-solomon committed Oct 23, 2024
1 parent 0b2c3fd commit 3f7e8da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/recipes/org/apache/camel/upgrade/camel45/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ _Recipes that include further recipes, often including the individual recipes be

* [Migrates `camel 4.4` application to `camel 4.5`](./camelmigrationrecipe.md)
* [Renamed classes for elasticsearch,opensearch and spring regis](./renamedclasses.md)
* [Replace context.${method}(*) with context.getCamelContextExtension().${method}(*)](./useextendedcamelcontextgetters.md)
* [Replace context.{method}(*) with context.getCamelContextExtension().{method}(*)](./useextendedcamelcontextgetters.md)

## Recipes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This recipe is composed of more than one recipe. If you want to customize the se

<Tabs groupId="recipeType">
<TabItem value="recipe-list" label="Recipe List" >
* [Replace context.${method}(*) with context.getCamelContextExtension().${method}(*)](../../../../../org/apache/camel/upgrade/camel45/useextendedcamelcontextgetters)
* [Replace context.{method}(*) with context.getCamelContextExtension().{method}(*)](../../../../../org/apache/camel/upgrade/camel45/useextendedcamelcontextgetters)
* [Replace 'camel.main.backlogTracing' with `camel.trace.enabled'](../../../../../org/apache/camel/upgrade/camel45/traceproperties)
* [Renamed classes for elasticsearch,opensearch and spring regis](../../../../../org/apache/camel/upgrade/camel45/renamedclasses)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
sidebar_label: "Replace context.${method}(*) with context.getCamelContextExtension().${method}(*)"
sidebar_label: "Replace context.{method}(*) with context.getCamelContextExtension().{method}(*)"
---

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

# Replace context.${method}(*) with context.getCamelContextExtension().${method}(*)
# Replace context.{method}(*) with context.getCamelContextExtension().{method}(*)

**org.apache.camel.upgrade.camel45.UseExtendedCamelContextGetters**

Expand Down Expand Up @@ -71,7 +71,7 @@ This recipe is composed of more than one recipe. If you want to customize the se
---
type: specs.openrewrite.org/v1beta/recipe
name: org.apache.camel.upgrade.camel45.UseExtendedCamelContextGetters
displayName: Replace context.${method}(*) with context.getCamelContextExtension().${method}(*)
displayName: Replace context.{method}(*) with context.getCamelContextExtension().{method}(*)
description:
recipeList:
- org.apache.camel.upgrade.customRecipes.MoveGetterToExtendedCamelContext:
Expand Down

0 comments on commit 3f7e8da

Please sign in to comment.