Job Description
,
, - , no classes/styles/div/br, preserve all content word-for-word, etc.).
Let me re-read carefully. The user message starts with "You are a job listing editor..." and goes through removal rules, then says "Return ONLY the cleaned job text...". Then there's a new section: "You receive a plain-text job description. Your ONLY job is to format it as clean semantic HTML." with different rules: use
,
, - , no CSS classes/inline styles/div/br, preserve ALL original content word-for-word, if no clear sections just wrap in
, return ONLY the HTML. No markdown fences, no explanation, no preamble.
Then there's the actual job description text provided.
So the task is: Take the provided job description text, apply the HTML formatting rules (using
,
, - , no div/br/classes/styles, preserve all content word-for-word), and output ONLY the HTML.
Let me look at the removal rules from the first part vs the HTML formatting rules from the second part. The first part says to remove social sharing, bylines, etc. The second part says to format as clean semantic HTML using specific tags, preserve ALL original content word-for-word, no remove mentioned except maybe the implicit "remove garbage" but the HTML rules focus on formatting. The actual input is the raw job description text, and I need to output HTML per the rules.
Let me examine the job description text. It's a mix of paragraphs, lists, spans, strong tags, etc. It has things like ` `, `
- ...`, `
`, `...`, etc.
Rules for HTML formatting:
- Use for introductory paragraphs and general text
- Use
for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role)
- Use - for list items (duties, requirements, qualifications, skills)
- No CSS classes, no inline styles, no s, no
tags
- Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase
- If text has no clear sections, just wrap paragraphs in tags
- Return ONLY the HTML. No markdown fences, no explanation, no preamble.
Important: "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". This means I must keep everything that's in the text, including ` `, ``, ``, etc.? But the rules also say "No CSS classes, no inline styles, no s, no
tags". So I need to strip `style="padding: 5px;"` and `style="..."` but keep the content inside. Also ``s must be removed. `
` tags must be removed. What about `` and `- `? Those are allowed. ``? The rules don't explicitly forbid ``, but they say "No CSS classes, no inline styles". The spans have `style="padding: 5px;"` which must be removed. Also spans might have no class, just style. I should remove the style attribute, keep the span content or just the text? The rule says "Preserve ALL original content word-for-word". That's tricky with HTML tags. I think I need to keep the textual content, and use the allowed tags to structure it, but remove disallowed tags (``, `
`, inline `style` attributes, `style` attributes entirely, maybe keep `` if no style, but here all spans have style). Actually, the rule says "No CSS classes, no inline styles, no s, no
tags". So I must strip `style="padding: 5px;"` entirely, and not use `` or `
`. I can keep ``, `
`, ``, `- `. What about ``? It's not explicitly forbidden, but since all spans have inline style, I'd have to remove the style attribute, leaving `text` or just the text. To be safe and follow "preserve ALL original content word-for-word", maybe I should keep `` but without style? Or strip tags and keep only text? The rule says "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". This likely means the textual content must be preserved exactly, but HTML tags are the formatting mechanism. I think the intent is to keep all the text words, but restructure into the allowed tags, removing disallowed tags and attributes.
Let me parse the job description text and decide how to map it.
The text:
```
Lead and manage the daily operations of your store to ensure that the overall objectives which include store targets, innovation initiatives, and customer service standards are met and exceeded.
- Grade 12.
- 3 to 5 years' experience in a retail store management capacity.
- Knowledge on sales & service management.
- Budgeting knowledge.
- Proficiency in MS Office.
- Effective Communication skills.
- Business understanding of retail trade, brand, customer & product.
Mr Price Group Limited is an equal opportunity employer and is committed to Employment Equity.
Stock Management:
- Ensure that stock is accurately received & unpacked to merchandise and replenish the sales floor.
- Monitor and manage stock levels through defined processes to mitigate risks (stock loss) and ensure adequate stock on hand.
- Oversee the overall maintenance of the stockroom to meet housekeeping standards.
- Authorize write offs, breakages, recalls and returns.
Sales Growth & Profitability:
- Analyse sales & profitability reports in store to collaborate with management on required operational action plans, increase sales performance and monitor store expenditure.
- Review and keep abreast of in-store product performance to provide feedback to support centre and enhance sales.
- Identify and propose new opportunities to increase sales and brand awareness.
Risk Management:
- Conduct compliance checks through defined processes to ensure and enforce overall compliance to policies and procedures.
Customer Experience Management:
- Ensure and maintain the implementation of customer experience processes (through the execution of business instruction letters, markdowns, repricing, promotions, customer experience plans, visual standards, customer feedback, general housekeeping etc.) to meet customer service standards.
Leadership & Development:
- Lead and drive the team within a store to achieve store KPIs and operational strategy in line with company values.
- Identify & drive training, coaching and development needs with a focus on talent management and succession planning.
- Recruit, administer & manage performance in accordance with company policies and procedures.
Innovation:
- Implement Innovation initiatives from Head Office to delight our customers and improve in-store processes. &
Apply Now ↗
How well do you match?
Get an instant AI match score for this role — free, takes 3 minutes.
Tailor your CV for this role
The concierge rewrites your whole CV and writes a matching cover letter for this job — opens right here, nothing to paste.
Tailor My CV to This Job ✍️
Free cover letter for this job
Upload your CV and get a tailored cover letter in seconds — free, no account needed.
Generate a Cover Letter 📝
My Job Concierge
Let jobs find you
Leave your email and our AI matches you to new jobs across 24 African markets — free. You wait for the call.
Almost there
Add your CV for real matches
Upload your CV and we score every new job against your real experience — only strong matches reach your inbox. Optional, but it makes your matches far sharper.
You're in.
We'll email you the moment a job matches your profile. Check your inbox for a welcome from My Job Concierge.
ECHO
Your MJC Assistant
I'm ECHO, your MJC career assistant. I can help you find jobs, explore career tools, and connect with opportunities across Africa.
,
, - , no CSS classes/inline styles/div/br, preserve ALL original content word-for-word, if no clear sections just wrap in
, return ONLY the HTML. No markdown fences, no explanation, no preamble.
Then there's the actual job description text provided.
So the task is: Take the provided job description text, apply the HTML formatting rules (using
,
, - , no div/br/classes/styles, preserve all content word-for-word), and output ONLY the HTML.
Let me look at the removal rules from the first part vs the HTML formatting rules from the second part. The first part says to remove social sharing, bylines, etc. The second part says to format as clean semantic HTML using specific tags, preserve ALL original content word-for-word, no remove mentioned except maybe the implicit "remove garbage" but the HTML rules focus on formatting. The actual input is the raw job description text, and I need to output HTML per the rules.
Let me examine the job description text. It's a mix of paragraphs, lists, spans, strong tags, etc. It has things like ` `, `
- ...`, `
`, `...`, etc.
Rules for HTML formatting:
- Use for introductory paragraphs and general text
- Use
for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role)
- Use - for list items (duties, requirements, qualifications, skills)
- No CSS classes, no inline styles, no s, no
tags
- Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase
- If text has no clear sections, just wrap paragraphs in tags
- Return ONLY the HTML. No markdown fences, no explanation, no preamble.
Important: "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". This means I must keep everything that's in the text, including ` `, ``, ``, etc.? But the rules also say "No CSS classes, no inline styles, no s, no
tags". So I need to strip `style="padding: 5px;"` and `style="..."` but keep the content inside. Also ``s must be removed. `
` tags must be removed. What about `` and `- `? Those are allowed. ``? The rules don't explicitly forbid ``, but they say "No CSS classes, no inline styles". The spans have `style="padding: 5px;"` which must be removed. Also spans might have no class, just style. I should remove the style attribute, keep the span content or just the text? The rule says "Preserve ALL original content word-for-word". That's tricky with HTML tags. I think I need to keep the textual content, and use the allowed tags to structure it, but remove disallowed tags (``, `
`, inline `style` attributes, `style` attributes entirely, maybe keep `` if no style, but here all spans have style). Actually, the rule says "No CSS classes, no inline styles, no s, no
tags". So I must strip `style="padding: 5px;"` entirely, and not use `` or `
`. I can keep ``, `
`, ``, `- `. What about ``? It's not explicitly forbidden, but since all spans have inline style, I'd have to remove the style attribute, leaving `text` or just the text. To be safe and follow "preserve ALL original content word-for-word", maybe I should keep `` but without style? Or strip tags and keep only text? The rule says "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". This likely means the textual content must be preserved exactly, but HTML tags are the formatting mechanism. I think the intent is to keep all the text words, but restructure into the allowed tags, removing disallowed tags and attributes.
Let me parse the job description text and decide how to map it.
The text:
```
Lead and manage the daily operations of your store to ensure that the overall objectives which include store targets, innovation initiatives, and customer service standards are met and exceeded.
- Grade 12.
- 3 to 5 years' experience in a retail store management capacity.
- Knowledge on sales & service management.
- Budgeting knowledge.
- Proficiency in MS Office.
- Effective Communication skills.
- Business understanding of retail trade, brand, customer & product.
Mr Price Group Limited is an equal opportunity employer and is committed to Employment Equity.
Stock Management:
- Ensure that stock is accurately received & unpacked to merchandise and replenish the sales floor.
- Monitor and manage stock levels through defined processes to mitigate risks (stock loss) and ensure adequate stock on hand.
- Oversee the overall maintenance of the stockroom to meet housekeeping standards.
- Authorize write offs, breakages, recalls and returns.
Sales Growth & Profitability:
- Analyse sales & profitability reports in store to collaborate with management on required operational action plans, increase sales performance and monitor store expenditure.
- Review and keep abreast of in-store product performance to provide feedback to support centre and enhance sales.
- Identify and propose new opportunities to increase sales and brand awareness.
Risk Management:
- Conduct compliance checks through defined processes to ensure and enforce overall compliance to policies and procedures.
Customer Experience Management:
- Ensure and maintain the implementation of customer experience processes (through the execution of business instruction letters, markdowns, repricing, promotions, customer experience plans, visual standards, customer feedback, general housekeeping etc.) to meet customer service standards.
Leadership & Development:
- Lead and drive the team within a store to achieve store KPIs and operational strategy in line with company values.
- Identify & drive training, coaching and development needs with a focus on talent management and succession planning.
- Recruit, administer & manage performance in accordance with company policies and procedures.
Innovation:
- Implement Innovation initiatives from Head Office to delight our customers and improve in-store processes. &
Apply Now ↗
How well do you match?
Get an instant AI match score for this role — free, takes 3 minutes.
Tailor your CV for this role
The concierge rewrites your whole CV and writes a matching cover letter for this job — opens right here, nothing to paste.
Tailor My CV to This Job ✍️
Free cover letter for this job
Upload your CV and get a tailored cover letter in seconds — free, no account needed.
Generate a Cover Letter 📝
My Job Concierge
Let jobs find you
Leave your email and our AI matches you to new jobs across 24 African markets — free. You wait for the call.
Almost there
Add your CV for real matches
Upload your CV and we score every new job against your real experience — only strong matches reach your inbox. Optional, but it makes your matches far sharper.
You're in.
We'll email you the moment a job matches your profile. Check your inbox for a welcome from My Job Concierge.
ECHO
Your MJC Assistant
I'm ECHO, your MJC career assistant. I can help you find jobs, explore career tools, and connect with opportunities across Africa.
, return ONLY the HTML. No markdown fences, no explanation, no preamble. Then there's the actual job description text provided. So the task is: Take the provided job description text, apply the HTML formatting rules (using
,
, - , no div/br/classes/styles, preserve all content word-for-word), and output ONLY the HTML.
Let me look at the removal rules from the first part vs the HTML formatting rules from the second part. The first part says to remove social sharing, bylines, etc. The second part says to format as clean semantic HTML using specific tags, preserve ALL original content word-for-word, no remove mentioned except maybe the implicit "remove garbage" but the HTML rules focus on formatting. The actual input is the raw job description text, and I need to output HTML per the rules.
Let me examine the job description text. It's a mix of paragraphs, lists, spans, strong tags, etc. It has things like ` `, `
- ...`, `
`, `...`, etc.
Rules for HTML formatting:
- Use for introductory paragraphs and general text
- Use
for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role)
- Use - for list items (duties, requirements, qualifications, skills)
- No CSS classes, no inline styles, no s, no
tags
- Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase
- If text has no clear sections, just wrap paragraphs in tags
- Return ONLY the HTML. No markdown fences, no explanation, no preamble.
Important: "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". This means I must keep everything that's in the text, including ` `, ``, ``, etc.? But the rules also say "No CSS classes, no inline styles, no s, no
tags". So I need to strip `style="padding: 5px;"` and `style="..."` but keep the content inside. Also ``s must be removed. `
` tags must be removed. What about `` and `- `? Those are allowed. ``? The rules don't explicitly forbid ``, but they say "No CSS classes, no inline styles". The spans have `style="padding: 5px;"` which must be removed. Also spans might have no class, just style. I should remove the style attribute, keep the span content or just the text? The rule says "Preserve ALL original content word-for-word". That's tricky with HTML tags. I think I need to keep the textual content, and use the allowed tags to structure it, but remove disallowed tags (``, `
`, inline `style` attributes, `style` attributes entirely, maybe keep `` if no style, but here all spans have style). Actually, the rule says "No CSS classes, no inline styles, no s, no
tags". So I must strip `style="padding: 5px;"` entirely, and not use `` or `
`. I can keep ``, `
`, ``, `- `. What about ``? It's not explicitly forbidden, but since all spans have inline style, I'd have to remove the style attribute, leaving `text` or just the text. To be safe and follow "preserve ALL original content word-for-word", maybe I should keep `` but without style? Or strip tags and keep only text? The rule says "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". This likely means the textual content must be preserved exactly, but HTML tags are the formatting mechanism. I think the intent is to keep all the text words, but restructure into the allowed tags, removing disallowed tags and attributes.
Let me parse the job description text and decide how to map it.
The text:
```
Lead and manage the daily operations of your store to ensure that the overall objectives which include store targets, innovation initiatives, and customer service standards are met and exceeded.
- Grade 12.
- 3 to 5 years' experience in a retail store management capacity.
- Knowledge on sales & service management.
- Budgeting knowledge.
- Proficiency in MS Office.
- Effective Communication skills.
- Business understanding of retail trade, brand, customer & product.
Mr Price Group Limited is an equal opportunity employer and is committed to Employment Equity.
Stock Management:
- Ensure that stock is accurately received & unpacked to merchandise and replenish the sales floor.
- Monitor and manage stock levels through defined processes to mitigate risks (stock loss) and ensure adequate stock on hand.
- Oversee the overall maintenance of the stockroom to meet housekeeping standards.
- Authorize write offs, breakages, recalls and returns.
Sales Growth & Profitability:
- Analyse sales & profitability reports in store to collaborate with management on required operational action plans, increase sales performance and monitor store expenditure.
- Review and keep abreast of in-store product performance to provide feedback to support centre and enhance sales.
- Identify and propose new opportunities to increase sales and brand awareness.
Risk Management:
- Conduct compliance checks through defined processes to ensure and enforce overall compliance to policies and procedures.
Customer Experience Management:
- Ensure and maintain the implementation of customer experience processes (through the execution of business instruction letters, markdowns, repricing, promotions, customer experience plans, visual standards, customer feedback, general housekeeping etc.) to meet customer service standards.
Leadership & Development:
- Lead and drive the team within a store to achieve store KPIs and operational strategy in line with company values.
- Identify & drive training, coaching and development needs with a focus on talent management and succession planning.
- Recruit, administer & manage performance in accordance with company policies and procedures.
Innovation:
- Implement Innovation initiatives from Head Office to delight our customers and improve in-store processes. &
Apply Now ↗
How well do you match?
Get an instant AI match score for this role — free, takes 3 minutes.
Tailor your CV for this role
The concierge rewrites your whole CV and writes a matching cover letter for this job — opens right here, nothing to paste.
Tailor My CV to This Job ✍️
Free cover letter for this job
Upload your CV and get a tailored cover letter in seconds — free, no account needed.
Generate a Cover Letter 📝
My Job Concierge
Let jobs find you
Leave your email and our AI matches you to new jobs across 24 African markets — free. You wait for the call.
Almost there
Add your CV for real matches
Upload your CV and we score every new job against your real experience — only strong matches reach your inbox. Optional, but it makes your matches far sharper.
You're in.
We'll email you the moment a job matches your profile. Check your inbox for a welcome from My Job Concierge.
ECHO
Your MJC Assistant
I'm ECHO, your MJC career assistant. I can help you find jobs, explore career tools, and connect with opportunities across Africa.
- ...`, `
`, `- ...`, etc.
Rules for HTML formatting:
- Use
- for list items (duties, requirements, qualifications, skills)
- No CSS classes, no inline styles, no s, no
tags - Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase - If text has no clear sections, just wrap paragraphs intags - Return ONLY the HTML. No markdown fences, no explanation, no preamble. Important: "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". This means I must keep everything that's in the text, including ` `, ``, ``, etc.? But the rules also say "No CSS classes, no inline styles, no
s, no
tags". So I need to strip `style="padding: 5px;"` and `style="..."` but keep the content inside. Also ``s must be removed. `
` tags must be removed. What about `- ` and `
- `? Those are allowed. ``? The rules don't explicitly forbid ``, but they say "No CSS classes, no inline styles". The spans have `style="padding: 5px;"` which must be removed. Also spans might have no class, just style. I should remove the style attribute, keep the span content or just the text? The rule says "Preserve ALL original content word-for-word". That's tricky with HTML tags. I think I need to keep the textual content, and use the allowed tags to structure it, but remove disallowed tags (``, `
`, inline `style` attributes, `style` attributes entirely, maybe keep `` if no style, but here all spans have style). Actually, the rule says "No CSS classes, no inline styles, nos, no
tags". So I must strip `style="padding: 5px;"` entirely, and not use `` or `
`. I can keep ``, `
`, `
- `, `
- `. What about ``? It's not explicitly forbidden, but since all spans have inline style, I'd have to remove the style attribute, leaving `text` or just the text. To be safe and follow "preserve ALL original content word-for-word", maybe I should keep `` but without style? Or strip tags and keep only text? The rule says "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". This likely means the textual content must be preserved exactly, but HTML tags are the formatting mechanism. I think the intent is to keep all the text words, but restructure into the allowed tags, removing disallowed tags and attributes.
Let me parse the job description text and decide how to map it.
The text:
```
Lead and manage the daily operations of your store to ensure that the overall objectives which include store targets, innovation initiatives, and customer service standards are met and exceeded.
- Grade 12.
- 3 to 5 years' experience in a retail store management capacity.
- Knowledge on sales & service management.
- Budgeting knowledge.
- Proficiency in MS Office.
- Effective Communication skills.
- Business understanding of retail trade, brand, customer & product.
Mr Price Group Limited is an equal opportunity employer and is committed to Employment Equity.
Stock Management:
- Ensure that stock is accurately received & unpacked to merchandise and replenish the sales floor.
- Monitor and manage stock levels through defined processes to mitigate risks (stock loss) and ensure adequate stock on hand.
- Oversee the overall maintenance of the stockroom to meet housekeeping standards.
- Authorize write offs, breakages, recalls and returns.
Sales Growth & Profitability:
- Analyse sales & profitability reports in store to collaborate with management on required operational action plans, increase sales performance and monitor store expenditure.
- Review and keep abreast of in-store product performance to provide feedback to support centre and enhance sales.
- Identify and propose new opportunities to increase sales and brand awareness.
Risk Management:- Conduct compliance checks through defined processes to ensure and enforce overall compliance to policies and procedures.
Customer Experience Management:- Ensure and maintain the implementation of customer experience processes (through the execution of business instruction letters, markdowns, repricing, promotions, customer experience plans, visual standards, customer feedback, general housekeeping etc.) to meet customer service standards.
Leadership & Development:
- Lead and drive the team within a store to achieve store KPIs and operational strategy in line with company values.
- Identify & drive training, coaching and development needs with a focus on talent management and succession planning.
- Recruit, administer & manage performance in accordance with company policies and procedures.
Innovation:
- Implement Innovation initiatives from Head Office to delight our customers and improve in-store processes. &
Apply Now ↗How well do you match?
Get an instant AI match score for this role — free, takes 3 minutes.
Tailor your CV for this role
The concierge rewrites your whole CV and writes a matching cover letter for this job — opens right here, nothing to paste.
Tailor My CV to This Job ✍️Free cover letter for this job
Upload your CV and get a tailored cover letter in seconds — free, no account needed.
Generate a Cover Letter 📝 - `. What about ``? It's not explicitly forbidden, but since all spans have inline style, I'd have to remove the style attribute, leaving `text` or just the text. To be safe and follow "preserve ALL original content word-for-word", maybe I should keep `` but without style? Or strip tags and keep only text? The rule says "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". This likely means the textual content must be preserved exactly, but HTML tags are the formatting mechanism. I think the intent is to keep all the text words, but restructure into the allowed tags, removing disallowed tags and attributes.
Let me parse the job description text and decide how to map it.
The text:
```
Lead and manage the daily operations of your store to ensure that the overall objectives which include store targets, innovation initiatives, and customer service standards are met and exceeded.
My Job ConciergeLet jobs find you
Leave your email and our AI matches you to new jobs across 24 African markets — free. You wait for the call.
Almost thereAdd your CV for real matches
Upload your CV and we score every new job against your real experience — only strong matches reach your inbox. Optional, but it makes your matches far sharper.
You're in.
We'll email you the moment a job matches your profile. Check your inbox for a welcome from My Job Concierge.
ECHOYour MJC AssistantI'm ECHO, your MJC career assistant. I can help you find jobs, explore career tools, and connect with opportunities across Africa.
- `? Those are allowed. ``? The rules don't explicitly forbid ``, but they say "No CSS classes, no inline styles". The spans have `style="padding: 5px;"` which must be removed. Also spans might have no class, just style. I should remove the style attribute, keep the span content or just the text? The rule says "Preserve ALL original content word-for-word". That's tricky with HTML tags. I think I need to keep the textual content, and use the allowed tags to structure it, but remove disallowed tags (`
for introductory paragraphs and general text - Use
for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role) - Use
- for list items (duties, requirements, qualifications, skills)
- No CSS classes, no inline styles, no