How can I create enumerated lists, but without breaking flow if we split it by another article/section/chapter?
Example output I want to achieve:
# Article I
## Section 1 - something
1. something
2. something
Section 2 - something
- something
- something
Section 3 - something
5 something
6. something
Article II
Section 1 - something
- something
- something
Section 2 - something
- something
- something
Section 3 - something
- something
- something
Currently I got an idea as below, but it's far from what I'd like to achieve, because for maintenance I'd also have to manually properly count and the list of elements isn't continuous.
\begin{document}
\section*{Article I}
\section{Section 1 - something}
\begin{enumerate}
\item something
\item something
\end{enumerate}
\section{Section 2 - something}
\begin{enumerate}
\item something
\item something
\end{enumerate}
\section{Section 3 - something}
\begin{enumerate}
\item something
\item something
\end{enumerate}
\section*{Article II}
\section{Section 1 - something}
\begin{enumerate}
\item something
\item something
\end{enumerate}
\section{Section 2 - something}
\begin{enumerate}
\item something
\item something
\end{enumerate}
\section{Section 3 - something}
\begin{enumerate}
\item something
\item something
\end{enumerate}
\end{document}



