From 20b5e2ca162a62d85581010913daa3ddf06ecb5f Mon Sep 17 00:00:00 2001 From: Dawid Nowak Date: Mon, 19 Feb 2024 07:06:46 +0100 Subject: [PATCH] state_object: Context: keywords with backticks (#31496) * state_object: Context: keywords with backticks Same way the keywords are highlighted in other tables on this page. * tiny tweak --------- Co-authored-by: c0ffeeca7 <38767475+c0ffeeca7@users.noreply.github.com> --- source/_docs/configuration/state_object.markdown | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/_docs/configuration/state_object.markdown b/source/_docs/configuration/state_object.markdown index 0b33f6bf7cb..346d98224aa 100644 --- a/source/_docs/configuration/state_object.markdown +++ b/source/_docs/configuration/state_object.markdown @@ -41,8 +41,8 @@ When an attribute contains spaces, you can retrieve it like this: `state_attr('s Context is used to tie {% term events %} and {% term states %} together in Home Assistant. Whenever an {% term automation %} or user interaction causes states to change, a new context is assigned. This context will be attached to all events and states that happen as result of the change. -| Field | Description | -| ----- | ------------------------------------------------------------------- | -| context_id | Unique identifier for the context. | -| user_id | Unique identifier of the user that started the change. Will be `None` if action was not started by a user (ie. started by an automation) | -| parent_id | Unique identifier of the parent context that started the change, if available. For example, if an automation is triggered, the context of the trigger will be set as parent. | +| Field | Description | +| ------------ | ------------------------------------------------------------------- | +| `context_id` | Unique identifier for the context. | +| `user_id` | Unique identifier of the user that started the change. Will be `None` if the action was not started by a user (for example, started by an automation). | +| `parent_id` | Unique identifier of the parent context that started the change, if available. For example, if an automation is triggered, the context of the trigger will be set as parent. |