I created this simple example to show, when I add enumerations to my tables, its indenting the content. How can I stop this indentation from happening? I want the numbering to be consistent with the other numbers in my document, not indented.

--Joel

Example below:

\starttext

\input knuth

% notice that the numbers line up with the text to the left

    \startitemize[n]
        \startitem test\stopitem
        \startitem test2\stopitem
    \stopitemize

\input knuth

% notice that the text in this table lines up with the text to the left

        \starttabulate[|p|p|p|]
            \NC test    \NC info    \NC details    \NC\NR
            \NC test 2    \NC info    \NC details    \NC\NR
        \stoptabulate

\input knuth

% notice the numbering is indented from the left, no longer lines up

    \startitemize[n]
        \starttabulate[|p|p|p|]
            \NI test    \NC info    \NC details    \NC\NR
            \NI test 2    \NC info    \NC details    \NC\NR
        \stoptabulate
    \stopitemize

\input knuth

\stoptext